From c5640ef87511c960e339af37b486678788be910a Mon Sep 17 00:00:00 2001 From: Nikita Sobolev Date: Sat, 15 Jan 2022 00:13:45 +0300 Subject: [PATCH] bpo-46380: Apply tests to both C and Python version (GH-30606) --- Lib/test/test_functools.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Lib/test/test_functools.py b/Lib/test/test_functools.py index 70ae8e06bb4..d527e31f39f 100644 --- a/Lib/test/test_functools.py +++ b/Lib/test/test_functools.py @@ -1414,7 +1414,7 @@ class TestLRU: def test_lru_star_arg_handling(self): # Test regression that arose in ea064ff3c10f - @functools.lru_cache() + @self.module.lru_cache() def f(*args): return args @@ -1426,11 +1426,11 @@ class TestLRU: # lru_cache was leaking when one of the arguments # wasn't cacheable. - @functools.lru_cache(maxsize=None) + @self.module.lru_cache(maxsize=None) def infinite_cache(o): pass - @functools.lru_cache(maxsize=10) + @self.module.lru_cache(maxsize=10) def limited_cache(o): pass