Skip to content

Commit 063b169

Browse files
committed
Spelling
1 parent 077eced commit 063b169

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/src/python/test_qgsmessagelog.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,15 @@ def testSignals(self):
4545
self.assertEqual(len(local_spy_received), 0)
4646
self.assertEqual(len(app_spy), 1)
4747
self.assertEqual(app_spy[-1], ['test', 'tag', Qgis.Info])
48-
# info message, so messageReceived(bool) should not be emited
48+
# info message, so messageReceived(bool) should not be emitted
4949
self.assertEqual(len(app_spy_received), 0)
5050

5151
local_log.logMessage('test', 'tag', Qgis.Warning, notifyUser=True)
5252
self.assertEqual(len(local_spy), 0)
5353
self.assertEqual(len(local_spy_received), 0)
5454
self.assertEqual(len(app_spy), 2)
5555
self.assertEqual(app_spy[-1], ['test', 'tag', Qgis.Warning])
56-
# warning message, so messageReceived(bool) should be emited
56+
# warning message, so messageReceived(bool) should be emitted
5757
self.assertEqual(len(app_spy_received), 1)
5858

5959
local_log.logMessage('test', 'tag', Qgis.Warning, notifyUser=False)

0 commit comments

Comments
 (0)