From 0e4e7d278c34c5c5a2897e7075362729ba0fd08f Mon Sep 17 00:00:00 2001 From: Taylor Salo Date: Thu, 13 Feb 2025 09:49:18 -0500 Subject: [PATCH] Update test_cli.py --- cubids/tests/test_cli.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cubids/tests/test_cli.py b/cubids/tests/test_cli.py index 87f02c14..1fe268e9 100644 --- a/cubids/tests/test_cli.py +++ b/cubids/tests/test_cli.py @@ -326,6 +326,7 @@ def test_remove_metadata_fields_command_with_test_dataset(tmp_path): # Choose a field that exists in the JSON field_to_remove = next(iter(original_json.keys())) + assert field_to_remove in original_json # Run remove-metadata-fields _main(["remove-metadata-fields", str(bids_dir), "--fields", field_to_remove])