From 51467663133733ac43f824f935166295b12a08b2 Mon Sep 17 00:00:00 2001 From: Jacob Lifshay Date: Mon, 29 Aug 2022 01:04:31 -0700 Subject: [PATCH] fix issue with cpython 3.7 --- src/openpower/decoder/isa/test_caller_svp64_utf_8_validation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openpower/decoder/isa/test_caller_svp64_utf_8_validation.py b/src/openpower/decoder/isa/test_caller_svp64_utf_8_validation.py index 7234a577..9c0ac839 100644 --- a/src/openpower/decoder/isa/test_caller_svp64_utf_8_validation.py +++ b/src/openpower/decoder/isa/test_caller_svp64_utf_8_validation.py @@ -10,7 +10,7 @@ from functools import lru_cache # writing the test_caller invocation this way makes it work with pytest -@lru_cache +@lru_cache() def make_cases(): # cache globally, so we only have to create test_data once per process return SVP64UTF8ValidationTestCase().test_data -- 2.30.2