Skip to content

Commit d7bd0e1

Browse files
committed
fix
1 parent 40cf447 commit d7bd0e1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

backend/tests/integration/test_execution_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ async def test_execute_script_with_error(self) -> None:
123123
assert "Start" in result_data.get("output", "")
124124
assert "End" not in result_data.get("output", "")
125125
assert result_data.get("errors") is not None
126-
assert "Script failed with exit code 1" in result_data["errors"]
126+
assert "ZeroDivisionError" in result_data["errors"]
127127

128128
@pytest.mark.asyncio
129129
async def test_get_nonexistent_result(self) -> None:

0 commit comments

Comments
 (0)