From e04f92ace0269dfbf95ff86e8ce19db679feea24 Mon Sep 17 00:00:00 2001 From: landi Date: Mon, 21 Sep 2020 01:15:17 +0200 Subject: [PATCH] fix test for python 3.6 --- tests/test_inspect.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_inspect.py b/tests/test_inspect.py index db383b1d..f977fce1 100644 --- a/tests/test_inspect.py +++ b/tests/test_inspect.py @@ -85,6 +85,7 @@ def test_inspect_text(): assert expected == render(t) +@skip_py36 def test_inspect_empty_dict(): expected = ( @@ -128,6 +129,7 @@ def test_inspect_builtin_function(): assert expected == render(print) +@skip_py36 def test_inspect_integer(): expected = ( @@ -144,6 +146,7 @@ def test_inspect_integer(): assert expected == render(1) +@skip_py36 def test_inspect_integer_with_methods(): expected = (