Skip to content

Commit

Permalink
Remove extra parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn authored and nyalldawson committed May 4, 2021
1 parent edbe634 commit 06eb55e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/python/test_qgsqueryresultmodel.py
Expand Up @@ -112,7 +112,7 @@ def loop_exiter():
QCoreApplication.processEvents()

self.assertGreater(res.fetchedRowCount(), 0)
self.assertLess(res.fetchedRowCount(), self.NUM_RECORDS))
self.assertLess(res.fetchedRowCount(), self.NUM_RECORDS)

@unittest.skipIf(os.environ.get('QGIS_CONTINUOUS_INTEGRATION_RUN', 'true'), 'Local manual test: not for CI')
def test_widget(self):
Expand Down

0 comments on commit 06eb55e

Please sign in to comment.