Skip to content

Commit f9012e0

Browse files
committed
fix: update pretty test snapshots for whitespace normalization
1 parent 6cfb699 commit f9012e0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/plpgsql-deparser/__tests__/pretty/__snapshots__/plpgsql-pretty.test.ts.snap

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ begin
6666
t.orders_scanned,
6767
t.gross_total,
6868
t.avg_total into v_orders_scanned, v_gross, v_avg
69-
FROM totals t;
69+
FROM totals t;
7070
if p_apply_discount then
7171
v_discount := round(v_gross * GREATEST(LEAST(v_discount_rate + v_jitter, 0.50), 0), p_round_to);
7272
else
@@ -77,7 +77,7 @@ begin
7777
SELECT
7878
oi.sku,
7979
sum(oi.quantity)::bigint AS qty into v_top_sku, v_top_sku_qty
80-
FROM app_public.order_item oi
80+
FROM app_public.order_item oi
8181
JOIN app_public.app_order o ON o.id = oi.order_id
8282
WHERE o.org_id = p_org_id
8383
AND o.user_id = p_user_id
@@ -295,7 +295,7 @@ BEGIN
295295
t.orders_scanned,
296296
t.gross_total,
297297
t.avg_total INTO v_orders_scanned, v_gross, v_avg
298-
FROM totals t;
298+
FROM totals t;
299299
IF p_apply_discount THEN
300300
v_discount := round(v_gross * GREATEST(LEAST(v_discount_rate + v_jitter, 0.50), 0), p_round_to);
301301
ELSE
@@ -306,7 +306,7 @@ BEGIN
306306
SELECT
307307
oi.sku,
308308
sum(oi.quantity)::bigint AS qty INTO v_top_sku, v_top_sku_qty
309-
FROM app_public.order_item oi
309+
FROM app_public.order_item oi
310310
JOIN app_public.app_order o ON o.id = oi.order_id
311311
WHERE o.org_id = p_org_id
312312
AND o.user_id = p_user_id

0 commit comments

Comments
 (0)