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 github-actions[bot] committed Jan 16, 2022
1 parent 987183a commit ce49a73
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 ce49a73

Please sign in to comment.