Skip to content

Commit b3f6cd9

Browse files
committed
Fix test
1 parent fd04243 commit b3f6cd9

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

tests/integrations/github/cicd/test_github_commands.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -474,10 +474,9 @@ def test_run_all_test_failed(
474474
assert GithubCheckStatus(test_checks_runs[2]["status"]).is_completed
475475
assert GithubCheckConclusion(test_checks_runs[2]["conclusion"]).is_failure
476476
assert test_checks_runs[2]["output"]["title"] == "Tests Failed"
477-
assert """FAIL: runTest (unittest.case.TestCase.runTest)
478-
No test
479-
----------------------------------------------------------------------
480-
sqlmesh.utils.errors.TestError: some error""" in test_checks_runs[2]["output"]["summary"]
477+
assert (
478+
"""sqlmesh.utils.errors.TestError: some error""" in test_checks_runs[2]["output"]["summary"]
479+
)
481480
assert """**Num Successful Tests: 0**""" in test_checks_runs[2]["output"]["summary"]
482481

483482
assert "SQLMesh - Prod Plan Preview" in controller._check_run_mapping

0 commit comments

Comments
 (0)