diff options
| author | Damien George | 2018-02-07 15:55:52 +1100 |
|---|---|---|
| committer | Damien George | 2018-02-07 15:55:52 +1100 |
| commit | 1f53ff61fffb4cc9b42ddf7e331e225c1b48b4ff (patch) | |
| tree | 4a55678c160d57992327301a24df84f1b938734d /tests/basics/filter.py | |
| parent | b45c8c17f0f295e919a90659d4c1880a47b228c1 (diff) | |
tests/basics: Rename remaining tests that are for built-in functions.
For consistency with all of the other tests that are named builtin_XXX.py.
Diffstat (limited to 'tests/basics/filter.py')
| -rw-r--r-- | tests/basics/filter.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/basics/filter.py b/tests/basics/filter.py deleted file mode 100644 index c6d97cf9b..000000000 --- a/tests/basics/filter.py +++ /dev/null @@ -1,8 +0,0 @@ -try: - filter -except: - print("SKIP") - raise SystemExit - -print(list(filter(lambda x: x & 1, range(-3, 4)))) -print(list(filter(None, range(-3, 4)))) |
