Skip to content

Commit 30ad1b2

Browse files
authored
Remove print statements from excepthook test (#4573)
1 parent 6f71a1b commit 30ad1b2

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

tests/integrations/excepthook/test_excepthook.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ def capture_envelope(self, envelope):
4242
subprocess.check_output([sys.executable, str(app)], stderr=subprocess.STDOUT)
4343

4444
output = excinfo.value.output
45-
print(output)
4645

4746
assert b"ZeroDivisionError" in output
4847
assert b"LOL" in output
@@ -86,7 +85,6 @@ def capture_envelope(self, envelope):
8685
subprocess.check_output([sys.executable, str(app)], stderr=subprocess.STDOUT)
8786

8887
output = excinfo.value.output
89-
print(output)
9088

9189
assert b"ZeroDivisionError" in output
9290
assert b"LOL" in output

0 commit comments

Comments
 (0)