We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1469452 commit 928b79dCopy full SHA for 928b79d
tests/repl/repl_test.py
@@ -38,7 +38,7 @@ def run_code_in_repl(self, lines: Iterable[str], *, env=None) -> str:
38
env=env,
39
).strip()
40
except subprocess.CalledProcessError as error:
41
- raise ValueError(f"Failed to run the REPL:\n{error.stdout}") from error
+ raise RuntimeError(f"Failed to run the REPL:\n{error.stdout}") from error
42
43
def test_repl_version(self):
44
"""Validates that we can successfully execute arbitrary code on the REPL."""
0 commit comments