We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3845b33 commit 5dcf22fCopy full SHA for 5dcf22f
tests/functional/test_client.py
@@ -322,7 +322,8 @@ def test_folder_deletion() -> None:
322
# This test is called last, one run created so expect length 1
323
assert len(client.delete_folder("/simvue_unit_testing/delete_me", remove_runs=True)) == 1
324
time.sleep(10)
325
- assert not client.get_folder("/simvue_unit_testing/delete_me")
+ with pytest.raises(ObjectNotFoundError):
326
+ client.get_folder("/simvue_unit_testing/delete_me")
327
with pytest.raises(ObjectNotFoundError):
328
client.get_run(run_id=run.id)
329
0 commit comments