From faea0992c12bb24587c980a11e5140ad723882ba Mon Sep 17 00:00:00 2001 From: Hideo Hattori Date: Tue, 28 May 2024 23:35:44 +0900 Subject: [PATCH] fix test --- test/test_autopep8.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test_autopep8.py b/test/test_autopep8.py index ad270a81..3d591d52 100755 --- a/test/test_autopep8.py +++ b/test/test_autopep8.py @@ -7333,6 +7333,7 @@ def test_e501_experimental_with_in(self): with autopep8_context(line, options=['--experimental']) as result: self.assertEqual(fixed, result) + @unittest.skipIf(sys.version_info < (3, 12), 'not support in Python3.11 and lower version') def test_e501_experimental_not_effect_with_fstring(self): line = """\ fstring = {"some_key": f"There is a string value inside of an f string, which itself is a dictionary value {s})"}