diff options
-rw-r--r-- | Lib/test/test_repr.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/test_repr.py b/Lib/test/test_repr.py index c23fe77..f635edb 100644 --- a/Lib/test/test_repr.py +++ b/Lib/test/test_repr.py @@ -266,4 +266,5 @@ class ClassWithFailingRepr: run_unittest(ReprTests) -run_unittest(LongReprTest) +if os.name != 'mac': + run_unittest(LongReprTest) |