Skip to content

Commit 457e2ac

Browse files
committed
forgot to remove sha matching tracking variable from verify and test
1 parent f436e65 commit 457e2ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/verify_and_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def get_full_sha(run_id):
5959
def verify_version(tested_binary, full_sha):
6060
pragma_version = [ tested_binary, "--version" ]
6161
short_sha = subprocess.run(pragma_version, text=True, capture_output=True).stdout.strip().split()[-1]
62-
return sha_matching(short_sha, full_sha, tested_binary, architecture, False)
62+
return sha_matching(short_sha, full_sha, tested_binary, architecture)
6363

6464
def test_extensions(tested_binary, file_name, extensions):
6565
for ext in extensions:

0 commit comments

Comments
 (0)