diff --git a/tests/test_compiled.py b/tests/test_compiled.py index 78f68f5..d17724e 100644 --- a/tests/test_compiled.py +++ b/tests/test_compiled.py @@ -11,7 +11,7 @@ def assert_is_compiled(obj): def test_patterns_are_compiled(): def walk(dictionary): - for key, value in dictionary.items(): + for value in dictionary.values(): if isinstance(value, dict): walk(value) else: