diff options
author | Rami Ali <flowergrass@users.noreply.github.com> | 2017-01-17 16:03:30 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2017-01-17 16:21:17 +1100 |
commit | 5314219f182e8a303e3fa68e2bacca978cb08002 (patch) | |
tree | 882cf1d50b0343b9bb74ea533cd77c39a83efae9 /tests/basics/fun_calldblstar3.py | |
parent | cba723fc8c9b76150efc95e54996ad12a9a8cfc6 (diff) |
tests/basics: Improve runtime.c test coverage.
Diffstat (limited to 'tests/basics/fun_calldblstar3.py')
-rw-r--r-- | tests/basics/fun_calldblstar3.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/basics/fun_calldblstar3.py b/tests/basics/fun_calldblstar3.py index 4367e68df..b796d52c7 100644 --- a/tests/basics/fun_calldblstar3.py +++ b/tests/basics/fun_calldblstar3.py @@ -5,7 +5,8 @@ def foo(**kw): class Mapping: def keys(self): - return ['a', 'b', 'c'] + # the long string checks the case of string interning + return ['a', 'b', 'c', 'abcdefghijklmnopqrst'] def __getitem__(self, key): if key == 'a': |