From 8fb953dbbdae92bd8d3a8737b2ad25d67e99bbcb Mon Sep 17 00:00:00 2001 From: Ngoc Khuat Date: Wed, 3 Jan 2024 15:24:54 +0700 Subject: [PATCH] mb.hawk.core-test/dummy-test not found --- test/mb/hawk/core_test.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/mb/hawk/core_test.clj b/test/mb/hawk/core_test.clj index 2076449..df3b4ab 100644 --- a/test/mb/hawk/core_test.clj +++ b/test/mb/hawk/core_test.clj @@ -63,8 +63,8 @@ (with-redefs [hawk/run-tests (fn [& _args] single-run-summary)] (testing "run single time" (is (= single-run-summary - (hawk/find-and-run-tests-repl {:only 'mb.hawk.core-test/dummy-test :times 1})))) + (hawk/find-and-run-tests-repl {:times 1})))) (testing "run multiple will combine the summary of all the runs" (is (= (apply merge-with + (repeat 3 single-run-summary)) - (hawk/find-and-run-tests-repl {:only 'mb.hawk.core-test/dummy-test :times 3}))))))) + (hawk/find-and-run-tests-repl {:times 3})))))))