Remove an obsolete test

This commit is contained in:
Kodi Arfer 2018-02-25 16:42:19 -08:00
parent 0c8c5dc830
commit ebc9bda7ee

View File

@ -187,14 +187,6 @@
(assert (in "takes a parameter list as second" (str e))))))
(defn test-alias-names-in-errors []
"NATIVE: tests that native aliases show the correct names in errors"
(try (eval '(list-comp 1 2 3 4))
(except [e [Exception]] (assert (in "list_comp" (str e)))))
(try (eval '(set-comp 1 2 3 4))
(except [e [Exception]] (assert (in "set_comp" (str e))))))
(defn test-for-loop []
"NATIVE: test for loops"
(setv count1 0 count2 0)