Remove print statement from test (#2809)

Remove unnecessary print statement.
This commit is contained in:
KullTC 2023-04-13 18:31:48 +02:00 committed by GitHub
parent 2a89dc8c1c
commit 802363eb6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -97,7 +97,6 @@ def test_python_ast_repl_multi_statement() -> None:
pytest.skip("Python 3.9+ is required for this test") pytest.skip("Python 3.9+ is required for this test")
tool = PythonAstREPLTool() tool = PythonAstREPLTool()
output = tool.run(_AST_SAMPLE_CODE_EXECUTE) output = tool.run(_AST_SAMPLE_CODE_EXECUTE)
print(output)
assert output == 30 assert output == 30