From fd1ef0c527fbe52fc1d98b98f01a520ea0deae18 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Fri, 11 Feb 2022 12:02:50 -0300 Subject: [PATCH] Make test_run_result_repr independent from Enum repr --- testing/test_pytester.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/test_pytester.py b/testing/test_pytester.py index 9f7cf42b7..049f8b22d 100644 --- a/testing/test_pytester.py +++ b/testing/test_pytester.py @@ -743,8 +743,8 @@ def test_run_result_repr() -> None: # known exit code r = pytester_mod.RunResult(1, outlines, errlines, duration=0.5) - assert ( - repr(r) == "" )