bpo-46380: Apply tests to both C and Python version (GH-30606)

This commit is contained in:
Nikita Sobolev 2022-01-15 00:13:45 +03:00 committed by GitHub
parent 025cbe7a9b
commit c5640ef875
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -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