We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 997becd commit ad40524Copy full SHA for ad40524
test/integration/version/test_version.py
@@ -12,7 +12,7 @@ def check_internal_version_cmd(tt_cmd, tmp_path):
12
cmd = [tt_cmd, "-I", "version", "--short"]
13
rc, output = utils.run_command_and_get_output(cmd, cwd=tmp_path)
14
assert rc == 0
15
- assert re.match(r"(\d+.\d+.\d+|<unknown>)", output)
+ assert re.match(r"(\d+.\d+.\d+|<unknown>)$", output)
16
17
cmd = [tt_cmd, "-I", "version", "--commit"]
18
0 commit comments