diff options
Diffstat (limited to 'tests/db_functions/text/test_repeat.py')
| -rw-r--r-- | tests/db_functions/text/test_repeat.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/db_functions/text/test_repeat.py b/tests/db_functions/text/test_repeat.py index c1e136c8f0..2234c2e2da 100644 --- a/tests/db_functions/text/test_repeat.py +++ b/tests/db_functions/text/test_repeat.py @@ -16,6 +16,7 @@ class RepeatTests(TestCase): (Repeat('name', Length('alias')), 'JohnJohnJohn'), (Repeat(Value('x'), 3), 'xxx'), (Repeat('name', None), none_value), + (Repeat(Value(None), 4), none_value), (Repeat('goes_by', 1), none_value), ) for function, repeated_text in tests: |
