Skip to content

Commit b972167

Browse files
committed
Address review comments
1 parent f8a45ee commit b972167

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

google/cloud/storage/emulator/tests/test_bucket.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -316,8 +316,8 @@ def test_notification(self):
316316
self.assertDictEqual(
317317
list_result, {"kind": "storage#notifications", "items": expected}
318318
)
319-
for id in [n["id"] for n in expected]:
320-
bucket.delete_notification(id, None)
319+
for n in expected:
320+
bucket.delete_notification(n["id"], None)
321321

322322

323323
if __name__ == "__main__":

0 commit comments

Comments
 (0)