From c9867097e854a43f787484efec6cfa7f784a22ca Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Fri, 9 Feb 2024 22:42:06 -0800 Subject: [PATCH] fix broken test Signed-off-by: Sean Corfield --- test/honey/sql/postgres_test.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/honey/sql/postgres_test.cljc b/test/honey/sql/postgres_test.cljc index 4c19820..4e5962e 100644 --- a/test/honey/sql/postgres_test.cljc +++ b/test/honey/sql/postgres_test.cljc @@ -410,7 +410,7 @@ (deftest select-agg-order-by-test (testing "single expression in order by" - (is (= ["SELECT ARRAY_AGG(a ORDER BY x) FROM products"] + (is (= ["SELECT ARRAY_AGG(a ORDER BY x ASC) FROM products"] (sql/format {:select [[[:array_agg [:order-by :a :x]]]] :from :products}))))