Skip to content

Commit

Permalink
fixed flake8 rule
Browse files Browse the repository at this point in the history
  • Loading branch information
jakimowb authored and nyalldawson committed Jan 17, 2022
1 parent 85d30fc commit 3457e4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/src/python/test_qgsrasterlayerproperties.py
Expand Up @@ -88,8 +88,8 @@ def createWidget(self,

# this should trigger
dialog.accept()
self.assertEqual(MyFactory.COUNT, 1, msg=f'Custom QgsMapLayerConfigWidget::createWidget(...) not called')
self.assertEqual(MyWidget.COUNT, 1, msg=f'Custom QgsMapLayerConfigWidget::apply() not called')
self.assertEqual(MyFactory.COUNT, 1, msg='Custom QgsMapLayerConfigWidget::createWidget(...) not called')
self.assertEqual(MyWidget.COUNT, 1, msg='Custom QgsMapLayerConfigWidget::apply() not called')


if __name__ == '__main__':
Expand Down

0 comments on commit 3457e4f

Please sign in to comment.