Skip to content

Commit

Permalink
Fix alignment
Browse files Browse the repository at this point in the history
  • Loading branch information
crisptrutski committed May 23, 2024
1 parent 4794c73 commit 234b7d4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/macaw/core_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -238,12 +238,12 @@
MAX(orders.total) AS max,
MIN(total) AS min
FROM public.orders"
(m/replace-names
"SELECT SUM(public.orders.amount) AS s,
MAX(orders.amount) AS max,
MIN(amount) AS min
FROM public.orders"
{:columns {{:schema "public" :table "orders" :column "amount"} "total"}})))
(m/replace-names
"SELECT SUM(public.orders.amount) AS s,
MAX(orders.amount) AS max,
MIN(amount) AS min
FROM public.orders"
{:columns {{:schema "public" :table "orders" :column "amount"} "total"}})))

(is (ws= "SELECT *, sturmunddrang
, oink AS oink
Expand Down

0 comments on commit 234b7d4

Please sign in to comment.