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})))))))