Skip to content

Commit

Permalink
CLJS-1345 Analyzer tests are broken due to new error messages
Browse files Browse the repository at this point in the history
  • Loading branch information
bensu authored and swannodette committed Jul 18, 2015
1 parent a3abd60 commit bf643db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/clojure/cljs/analyzer_tests.clj
Expand Up @@ -95,7 +95,7 @@
(a/analyze ns-env '(ns foo.bar (:unless [])))
(catch Exception e
(.getMessage e)))
"Only :refer-clojure, :require, :require-macros, :use and :use-macros libspecs supported"))
"Only :refer-clojure, :require, :require-macros, :use, :use-macros, and :import libspecs supported"))
(is (.startsWith
(try
(a/analyze ns-env '(ns foo.bar (:require baz.woz) (:require noz.goz)))
Expand Down Expand Up @@ -260,7 +260,7 @@
(a/analyze test-env '(defn foo 123))
(catch Exception e
(.getMessage e)))
"Parameter declaration \"123\" should be a vector at line")))
"Parameter declaration \"123\" should be a vector")))

;; =============================================================================
;; ns desugaring
Expand Down

0 comments on commit bf643db

Please sign in to comment.