summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Halbert <halbert@halwitz.org>2017-12-13 09:57:04 -0500
committerGitHub <noreply@github.com>2017-12-13 09:57:04 -0500
commit00bf60db284b417b9d361dfdb7d92c15686c9719 (patch)
tree9375f9d42d74eda2d73692d707ffc5fd8a7d1d70
parentb31c2ea7480a816bd909f841972f228d09242821 (diff)
parent8a50fe8982c36c573d8d93f0df6c52ba9772c62d (diff)
Merge pull request #477 from tannewt/always_test_enumerate
Always test enumerate. This will ensure that all supported ports include it
-rw-r--r--tests/basics/enumerate.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/basics/enumerate.py b/tests/basics/enumerate.py
index 4f8239bf7..00595cb0f 100644
--- a/tests/basics/enumerate.py
+++ b/tests/basics/enumerate.py
@@ -1,9 +1,3 @@
-try:
- enumerate
-except:
- print("SKIP")
- raise SystemExit
-
print(list(enumerate([])))
print(list(enumerate([1, 2, 3])))
print(list(enumerate([1, 2, 3], 5)))