Skip to content

Commit 173c252

Browse files
committed
removed com
1 parent bfeb069 commit 173c252

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_utils_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def test_create_unique_data_folder():
7676
base_data_folder = "./tests/data"
7777
generated_id, data_path = utils_functions.create_unique_data_folder(base_data_folder)
7878
assert isinstance(generated_id, str)
79-
assert re.fullmatch(r"[0-9a-f]{32}", generated_id), "ID should be 32 hex characters"
79+
assert re.fullmatch(r"[0-9a-f]{32}", generated_id)
8080
assert os.path.exists(data_path)
8181
assert data_path.startswith(base_data_folder)
8282
assert generated_id in data_path

0 commit comments

Comments
 (0)