Skip to content

Commit

Permalink
ci(gevent): improve ddtrace-run test assertion message
Browse files Browse the repository at this point in the history
  • Loading branch information
brettlangdon committed Dec 16, 2024
1 parent 28c4466 commit d93244e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/contrib/gevent/test_tracer.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,6 +411,6 @@ def test_ddtracerun(self):

p.wait()
stdout, stderr = p.stdout.read(), p.stderr.read()
assert p.returncode == 0, stderr.decode()
assert p.returncode == 0, f"stdout: {stdout.decode()}\n\nstderr: {stderr.decode()}"
assert b"Test success" in stdout, stdout.decode()
assert b"RecursionError" not in stderr, stderr.decode()

0 comments on commit d93244e

Please sign in to comment.