diff --git a/frontend/test/frontend_tests/helpers/events.cljs b/frontend/test/frontend_tests/helpers/events.cljs index 4b59dca6c..62c4b47f3 100644 --- a/frontend/test/frontend_tests/helpers/events.cljs +++ b/frontend/test/frontend_tests/helpers/events.cljs @@ -23,7 +23,7 @@ (js/console.log "STORE ERROR" (.-stack cause)) (when-let [data (some-> cause ex-data ::sm/explain)] - (pp/pprint (sm/humanize-data data)))) + (pp/pprint (sm/humanize-explain data)))) (defn prepare-store "Create a store with the given initial state. Wait until diff --git a/frontend/test/frontend_tests/setup_test.cljs b/frontend/test/frontend_tests/setup_test.cljs index 423357c81..047d8d2d0 100644 --- a/frontend/test/frontend_tests/setup_test.cljs +++ b/frontend/test/frontend_tests/setup_test.cljs @@ -14,7 +14,7 @@ (try (js/console.log "EE" (.-stack cause)) (when-let [data (some-> cause ex-data ::sm/explain)] - (pp/pprint (sm/humanize-data data))) + (pp/pprint (sm/humanize-explain data))) (finally (js/console.log "EXIT") (.exit js/process -1)))))