Skip to content

Commit d1a550e

Browse files
committed
Fix test
1 parent 627ae51 commit d1a550e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker/irods_client/tests/test_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ def test_meta_cli(item_name, request, pass_opts):
186186
cli_path = f"irods:{item.path}"
187187

188188
ret = subprocess.run(["ibridges", "meta-list", cli_path], capture_output=True, **pass_opts)
189-
assert len(ret.stdout.strip("\n")) == 0
189+
assert len(ret.stdout.strip("\n").split("\n")) == 1
190190

191191
subprocess.run(["ibridges", "meta-add", cli_path, "key", "value", "units"], **pass_opts)
192192
assert ("key", "value", "units") in meta

0 commit comments

Comments
 (0)