diff options
Diffstat (limited to 'tests/test_simple_unit.py')
-rw-r--r-- | tests/test_simple_unit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_simple_unit.py b/tests/test_simple_unit.py index 41c4b25..15edc33 100644 --- a/tests/test_simple_unit.py +++ b/tests/test_simple_unit.py @@ -503,7 +503,7 @@ class TestCommonHelperExpressions(PyparsingExpressionTestCase): ), PpTestSpec( desc="A counted array of words", - expr=pp.countedArray(pp.Word("ab"))[...], + expr=pp.Group(pp.countedArray(pp.Word("ab")))[...], text="2 aaa bbb 0 3 abab bbaa abbab", expected_list=[["aaa", "bbb"], [], ["abab", "bbaa", "abbab"]], ), |