This commit is contained in:
vdimir 2022-03-14 13:24:46 +00:00
parent da1e740b32
commit 6f1cf419ac
No known key found for this signature in database
GPG Key ID: 6EE4CE2BEDC51862

View File

@ -108,7 +108,7 @@ def is_stateless_bugfix_check_already_passed(gh, git_sha):
status = get_post_commit_status(gh, git_sha, 'Stateless tests bugfix validate check*')
if status is None:
return False
return status.description.statswith('Failed tests found')
return status.description.startswith('Failed tests found')
if __name__ == "__main__":