diff --git a/sci b/sci index ba01b35b..ffe175a0 160000 --- a/sci +++ b/sci @@ -1 +1 @@ -Subproject commit ba01b35be545f215f407454c62ef75ac9313d1bf +Subproject commit ffe175a0243330554ab1688b98db140b5b4d361e diff --git a/src/babashka/main.clj b/src/babashka/main.clj index c7c65c48..00a9c809 100644 --- a/src/babashka/main.clj +++ b/src/babashka/main.clj @@ -288,7 +288,6 @@ Everything after that is bound to *command-line-args*.")) 'clojure.stacktrace stacktrace-namespace 'clojure.main {'demunge demunge 'repl-requires clojure-main/repl-requires} - 'clojure.repl {'demunge demunge} 'clojure.test t/clojure-test-namespace 'babashka.classpath {'add-classpath add-classpath*} 'clojure.data.xml xml/xml-namespace diff --git a/test/babashka/impl/repl_test.clj b/test/babashka/impl/repl_test.clj index b914207b..8c80e51b 100644 --- a/test/babashka/impl/repl_test.clj +++ b/test/babashka/impl/repl_test.clj @@ -44,7 +44,8 @@ (assert-repl "1\n(dec *1)(+ *2 *2)" "2") (assert-repl "1\n(dec *1)(+ *2 *2)" "2") (assert-repl "*command-line-args*" "[\"a\" \"b\" \"c\"]") - (assert-repl-error "(+ 1 nil)" "NullPointerException")) + (assert-repl-error "(+ 1 nil)" "NullPointerException") + (assert-repl-error "(/ 1 0) (pst 1)" "Divide by zero\n\tclojure.lang.Numbers")) ;;;; Scratch