From 38c1bbb988920fe84961dbf0cd6f57b28c76c955 Mon Sep 17 00:00:00 2001 From: Artem Medeu Date: Tue, 13 Aug 2024 12:49:43 +0500 Subject: [PATCH] tests: fix failing --- test/k16/kmono/api_test.clj | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/k16/kmono/api_test.clj b/test/k16/kmono/api_test.clj index 34c707f..7fdb34c 100644 --- a/test/k16/kmono/api_test.clj +++ b/test/k16/kmono/api_test.clj @@ -112,9 +112,9 @@ :paths ["src"]})) (testing "Derive params from workspace" (with-redefs [repl.deps/cp! (fn [{:keys [package-aliases aliases]} _] - (is (= [:kmono/package-deps - :kmono.pkg/p2.test - :kmono.pkg/p1.test] - package-aliases)) + (is (= (set [:kmono/package-deps + :kmono.pkg/p2.test + :kmono.pkg/p1.test]) + (set package-aliases))) (is (= [:dev] aliases)))] (api/generate-classpath! release-opts nil)))))