From 6f1cf419acf750c490147a6cc0bed545fdbd5b48 Mon Sep 17 00:00:00 2001 From: vdimir Date: Mon, 14 Mar 2022 13:24:46 +0000 Subject: [PATCH] Fix typo --- tests/ci/integration_test_check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ci/integration_test_check.py b/tests/ci/integration_test_check.py index a3b5725ecbd..6f09f92bd41 100644 --- a/tests/ci/integration_test_check.py +++ b/tests/ci/integration_test_check.py @@ -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__":