From 9911d80418f2d1eb18c4b364d24aeb15a09cbc43 Mon Sep 17 00:00:00 2001 From: Konrad Mrozek <konrad.mrozek@gmail.com> Date: Tue, 05 Dec 2023 07:36:36 +0000 Subject: [PATCH] Make compatible with neovim --- clojure/src/test_runner.clj | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/clojure/src/test_runner.clj b/clojure/src/test_runner.clj index e8cc9f9..c617c67 100644 --- a/clojure/src/test_runner.clj +++ b/clojure/src/test_runner.clj @@ -72,7 +72,9 @@ (println (str "ERROR-CONTINUE:ACTUAL:" (if (instance? Throwable (:actual m)) (ex-message (:actual m)) - (pr-str (:actual m)))))))) + (pr-str (:actual m))))) + (when (instance? Throwable (:actual m)) + (.printStackTrace (:actual m)))))) (defmethod vim-report :default [_]) -- Gitblit v1.9.3