Skip to content

Commit da6dc1c

Browse files
committed
Typo fix.
1 parent 61c5d0f commit da6dc1c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

storage/tests/system.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,7 @@ def test_notification_minimal(self):
607607
retry_429(notification.create)()
608608
try:
609609
self.assertTrue(notification.exists())
610-
self.assertIsNotNone(notification.id)
610+
self.assertIsNotNone(notification.notification_id)
611611
notifications = list(bucket.list_notifications())
612612
self.assertEqual(len(notifications), 1)
613613
self.assertEqual(notifications[0].topic_name, self.TOPIC_NAME)
@@ -628,7 +628,7 @@ def test_notification_explicit(self):
628628
retry_429(notification.create)()
629629
try:
630630
self.assertTrue(notification.exists())
631-
self.assertIsNotNone(notification.id)
631+
self.assertIsNotNone(notification.notification_id)
632632
self.assertEqual(
633633
notification.custom_attributes, self.CUSTOM_ATTRIBUTES)
634634
self.assertEqual(notification.event_types, self.event_types())

0 commit comments

Comments
 (0)