From 360b943ee61601fc926ce3fdae5251ea9982a9cc Mon Sep 17 00:00:00 2001 From: Lee Spector Date: Sun, 31 Dec 2023 21:43:38 -0500 Subject: [PATCH] Fix test --- test/propeller/utils_test.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/propeller/utils_test.cljc b/test/propeller/utils_test.cljc index 1461134..d342c60 100644 --- a/test/propeller/utils_test.cljc +++ b/test/propeller/utils_test.cljc @@ -24,7 +24,7 @@ (t/deftest random-instruction-test (t/is (letfn [(instruct [] 1)] - (let [test (u/random-instruction [instruct 2])] + (let [test (u/random-instruction [instruct 2] {})] (if (= 1 test) true (= 2 test))))))