diff --git a/docker/irods_client/tests/test_cli.py b/docker/irods_client/tests/test_cli.py index 6a2578e5..dc3412f3 100644 --- a/docker/irods_client/tests/test_cli.py +++ b/docker/irods_client/tests/test_cli.py @@ -189,8 +189,10 @@ def test_meta_cli(item_name, request, pass_opts): assert len(ret.stdout.strip("\n").split("\n")) == 1 subprocess.run(["ibridges", "meta-add", cli_path, "key", "value", "units"], **pass_opts) + meta = MetaData(item) assert ("key", "value", "units") in meta subprocess.run(["ibridges", "meta-del", cli_path, "--key", "key"], **pass_opts) + meta = MetaData(item) assert ("key", "value", "units") not in meta #assert len(meta) == 0