summaryrefslogtreecommitdiff
path: root/tests/basics/zip.py
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2018-02-07 15:55:52 +1100
committerDamien George <damien.p.george@gmail.com>2018-02-07 15:55:52 +1100
commit1f53ff61fffb4cc9b42ddf7e331e225c1b48b4ff (patch)
tree4a55678c160d57992327301a24df84f1b938734d /tests/basics/zip.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/zip.py')
-rw-r--r--tests/basics/zip.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/basics/zip.py b/tests/basics/zip.py
deleted file mode 100644
index 66f2544e5..000000000
--- a/tests/basics/zip.py
+++ /dev/null
@@ -1,9 +0,0 @@
-try:
- zip
- set
-except NameError:
- print("SKIP")
- raise SystemExit
-
-print(list(zip()))
-print(list(zip([1], set([2, 3]))))