diff --git a/test/propeller/push/utils/helpers_test.cljc b/test/propeller/push/instructions_test.cljc similarity index 76% rename from test/propeller/push/utils/helpers_test.cljc rename to test/propeller/push/instructions_test.cljc index 097a4d6..017b229 100644 --- a/test/propeller/push/utils/helpers_test.cljc +++ b/test/propeller/push/instructions_test.cljc @@ -1,6 +1,6 @@ -(ns propeller.push.utils.helpers-test +(ns propeller.push.instructions-test (:require [clojure.test :as t] - [propeller.push.utils.helpers :as h])) + [propeller.push.instructions :as h])) (t/deftest get-literal-type-test (t/is (= (h/get-literal-type "abc") :string)) diff --git a/test/propeller/push/utils/limits_test.cljc b/test/propeller/push/limits_test.cljc similarity index 91% rename from test/propeller/push/utils/limits_test.cljc rename to test/propeller/push/limits_test.cljc index 99cacce..e774268 100644 --- a/test/propeller/push/utils/limits_test.cljc +++ b/test/propeller/push/limits_test.cljc @@ -1,6 +1,6 @@ -(ns propeller.push.utils.limits-test +(ns propeller.push.limits-test (:require [clojure.test :as t] - [propeller.push.utils.limits :as l])) + [propeller.push.limits :as l])) (t/deftest limit-number-test (t/is (= (l/limit-number (inc l/max-number-magnitude)) diff --git a/test/propeller/push/state_test.cljc b/test/propeller/push/state_test.cljc index 7d1fdc5..d6b8cb4 100644 --- a/test/propeller/push/state_test.cljc +++ b/test/propeller/push/state_test.cljc @@ -1,7 +1,7 @@ (ns propeller.push.state-test (:require [clojure.test :as t] [propeller.push.state :as state] - [propeller.push.utils.limits :as l])) + [propeller.push.limits :as l])) (t/deftest push-to-stack-test (t/is (= (state/push-to-stack {:integer '()} :integer 1)