We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 077eced commit 063b169Copy full SHA for 063b169
tests/src/python/test_qgsmessagelog.py
@@ -45,15 +45,15 @@ def testSignals(self):
45
self.assertEqual(len(local_spy_received), 0)
46
self.assertEqual(len(app_spy), 1)
47
self.assertEqual(app_spy[-1], ['test', 'tag', Qgis.Info])
48
- # info message, so messageReceived(bool) should not be emited
+ # info message, so messageReceived(bool) should not be emitted
49
self.assertEqual(len(app_spy_received), 0)
50
51
local_log.logMessage('test', 'tag', Qgis.Warning, notifyUser=True)
52
self.assertEqual(len(local_spy), 0)
53
54
self.assertEqual(len(app_spy), 2)
55
self.assertEqual(app_spy[-1], ['test', 'tag', Qgis.Warning])
56
- # warning message, so messageReceived(bool) should be emited
+ # warning message, so messageReceived(bool) should be emitted
57
self.assertEqual(len(app_spy_received), 1)
58
59
local_log.logMessage('test', 'tag', Qgis.Warning, notifyUser=False)
0 commit comments