Skip to content

Commit

Permalink
Remove extra parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed May 4, 2021
1 parent 8c56c56 commit 22f6059
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/src/python/test_qgsqueryresultmodel.py
Original file line number Diff line number Diff line change
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 22f6059

Please sign in to comment.