Skip to content

Commit d4039b7

Browse files
committed
fix(test): Add a missing dash
Adds a missing dash "-" to the fingerprint comparison command of the CPU template helper tool. Signed-off-by: Takahiro Itazuri <[email protected]>
1 parent b1415bf commit d4039b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integration_tests/functional/test_cpu_template_helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def fingerprint_compare(
8383
"""Compare two fingerprint files"""
8484
cmd = (
8585
f"{self.BINARY_PATH} fingerprint compare"
86-
f" --prev {prev_path} -curr {curr_path}"
86+
f" --prev {prev_path} --curr {curr_path}"
8787
f" --filters {' '.join(filters)}"
8888
)
8989
utils.run_cmd(cmd)

0 commit comments

Comments
 (0)