From ebc9bda7eecb07d156a5ff9867ac12bc6fd83bca Mon Sep 17 00:00:00 2001 From: Kodi Arfer Date: Sun, 25 Feb 2018 16:42:19 -0800 Subject: [PATCH] Remove an obsolete test --- tests/native_tests/language.hy | 8 -------- 1 file changed, 8 deletions(-) diff --git a/tests/native_tests/language.hy b/tests/native_tests/language.hy index 89f8e5d..8f99b1d 100644 --- a/tests/native_tests/language.hy +++ b/tests/native_tests/language.hy @@ -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)