From 33b2c24724d010e5bc8385094c1d7c34ba1c07bb Mon Sep 17 00:00:00 2001 From: fluhus Date: Fri, 21 Mar 2025 13:19:40 -0700 Subject: [PATCH] Fix indentation in optimizer test The test wasn't running because of an indentation mistake. --- Lib/test/test_capi/test_opt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_capi/test_opt.py b/Lib/test/test_capi/test_opt.py index c985009e120203..f2d0ad41b2abad 100644 --- a/Lib/test/test_capi/test_opt.py +++ b/Lib/test/test_capi/test_opt.py @@ -1531,7 +1531,7 @@ def f(n): # But all of the appends we care about are still there: self.assertEqual(uops.count("_CALL_LIST_APPEND"), len("ABCDEFG")) -def test_narrow_type_to_constant_str_empty(self): + def test_narrow_type_to_constant_str_empty(self): def f(n): trace = [] for i in range(n):