We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 40cf447 commit d7bd0e1Copy full SHA for d7bd0e1
1 file changed
backend/tests/integration/test_execution_api.py
@@ -123,7 +123,7 @@ async def test_execute_script_with_error(self) -> None:
123
assert "Start" in result_data.get("output", "")
124
assert "End" not in result_data.get("output", "")
125
assert result_data.get("errors") is not None
126
- assert "Script failed with exit code 1" in result_data["errors"]
+ assert "ZeroDivisionError" in result_data["errors"]
127
128
@pytest.mark.asyncio
129
async def test_get_nonexistent_result(self) -> None:
0 commit comments