From 41f1f5740d2140bfd3b2a282ca1087a4b576679a Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 15 Apr 2024 07:02:18 +0200 Subject: Merging upstream version 23.10.0. Signed-off-by: Daniel Baumann --- tests/test_transpile.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests/test_transpile.py') diff --git a/tests/test_transpile.py b/tests/test_transpile.py index 0c65da4..95fba30 100644 --- a/tests/test_transpile.py +++ b/tests/test_transpile.py @@ -69,12 +69,12 @@ class TestTranspile(unittest.TestCase): self.validate( "SELECT a, b, c FROM (SELECT a, b, c FROM t)", "SELECT\n" - " a\n" + " a\n" " , b\n" " , c\n" "FROM (\n" " SELECT\n" - " a\n" + " a\n" " , b\n" " , c\n" " FROM t\n" @@ -86,13 +86,13 @@ class TestTranspile(unittest.TestCase): ) self.validate( "SELECT FOO, BAR, BAZ", - "SELECT\n FOO\n , BAR\n , BAZ", + "SELECT\n FOO\n , BAR\n , BAZ", leading_comma=True, pretty=True, ) self.validate( "SELECT FOO, /*x*/\nBAR, /*y*/\nBAZ", - "SELECT\n FOO /* x */\n , BAR /* y */\n , BAZ", + "SELECT\n FOO /* x */\n , BAR /* y */\n , BAZ", leading_comma=True, pretty=True, ) -- cgit v1.2.3