aboutsummaryrefslogtreecommitdiff
path: root/tests/basics/filter.py
diff options
context:
space:
mode:
authorDamien George2018-02-07 15:55:52 +1100
committerDamien George2018-02-07 15:55:52 +1100
commit1f53ff61fffb4cc9b42ddf7e331e225c1b48b4ff (patch)
tree4a55678c160d57992327301a24df84f1b938734d /tests/basics/filter.py
parentb45c8c17f0f295e919a90659d4c1880a47b228c1 (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.py8
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))))