Skip to content

Commit

Permalink
Fix utils/check_bad_commit.py (for auto ping in CI) (#34943)
Browse files Browse the repository at this point in the history
* fix

* fix

---------

Co-authored-by: ydshieh <[email protected]>
  • Loading branch information
ydshieh and ydshieh authored Nov 28, 2024
1 parent 5e8c1d7 commit 6300212
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/check_bad_commit.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def create_script(target_test):
print(result.stdout)
if len(result.stderr) > 0:
if "ERROR: not found: " in result.stderr:
if "ERROR: file or directory not found: " in result.stderr:
print("test not found in this commit")
exit(0)
else:
Expand Down

0 comments on commit 6300212

Please sign in to comment.