Skip to content

Commit

Permalink
tests: fix nats os example test
Browse files Browse the repository at this point in the history
  • Loading branch information
Lancetnik committed May 22, 2024
1 parent 24da577 commit 46212d9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/examples/nats/test_e07_object_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ async def test_basic():
await broker.start()

os = await broker.object_storage("example-bucket")
existed_files = await os.list()
try:
existed_files = await os.list()
except Exception:
existed_files = ()

call = True
for file in existed_files:
Expand Down

0 comments on commit 46212d9

Please sign in to comment.