diff options
-rw-r--r-- | test/clojure/test_clojure/protocols.clj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/clojure/test_clojure/protocols.clj b/test/clojure/test_clojure/protocols.clj index 57db84d3..32dbf812 100644 --- a/test/clojure/test_clojure/protocols.clj +++ b/test/clojure/test_clojure/protocols.clj @@ -249,7 +249,7 @@ (is (false? (.isEmpty r))))) (testing "you can't define a method twice" (is (fails-with-cause? - java.lang.ClassFormatError #"^Duplicate method name" + java.lang.ClassFormatError #"^(Repetitive|Duplicate) method name" (eval '(reify java.util.List (size [_] 10) |