diff options
author | Marc Mueller <30130371+cdce8p@users.noreply.github.com> | 2021-06-01 23:44:52 +0200 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-06-10 12:49:20 +0200 |
commit | 2090d96c3f7978dbc5517e5c974ad96e44744192 (patch) | |
tree | 0b6afbcd93bfd91263d08d72a40f62192af74ea0 /tests/extensions | |
parent | 5cd19d2f8fab98f707d666f8dabb89c9c8b94f11 (diff) | |
download | pylint-git-2090d96c3f7978dbc5517e5c974ad96e44744192.tar.gz |
Fix existing tests
Diffstat (limited to 'tests/extensions')
-rw-r--r-- | tests/extensions/data/broad_try_clause.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/extensions/data/broad_try_clause.py b/tests/extensions/data/broad_try_clause.py index 5649023c6..1a3d2ef4f 100644 --- a/tests/extensions/data/broad_try_clause.py +++ b/tests/extensions/data/broad_try_clause.py @@ -36,7 +36,7 @@ try: # [max-try-statements] while False: print("This verifies that content inside of a while loop is counted too.") - for item in []: + for item in (): print("This verifies that content inside of a for loop is counted too.") |