We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8a45ee commit b972167Copy full SHA for b972167
1 file changed
google/cloud/storage/emulator/tests/test_bucket.py
@@ -316,8 +316,8 @@ def test_notification(self):
316
self.assertDictEqual(
317
list_result, {"kind": "storage#notifications", "items": expected}
318
)
319
- for id in [n["id"] for n in expected]:
320
- bucket.delete_notification(id, None)
+ for n in expected:
+ bucket.delete_notification(n["id"], None)
321
322
323
if __name__ == "__main__":
0 commit comments