Skip to content

Commit 224e64d

Browse files
committed
chore: style for dbx tests
1 parent ad2c98d commit 224e64d

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

tests/dialects/test_databricks.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -492,14 +492,13 @@ def test_overlay(self):
492492
)
493493

494494
def test_set_variable(self):
495-
# Both SET VAR and SET VARIABLE are synonyms; both normalize to SET VARIABLE on output
496495
self.validate_identity("SET VAR v = 5", "SET VARIABLE v = 5")
497496
self.validate_identity("SET VARIABLE v = 5")
498497
self.validate_identity("SET VARIABLE v1 = 1, v2 = '2'")
499498
self.validate_identity("SET VARIABLE (v1, v2) = (SELECT 1, 2)")
500499
self.validate_identity("SET VARIABLE v = (SELECT MAX(c1) FROM VALUES (1), (2) AS T(c1))")
501500
self.validate_identity("SET VARIABLE v = DEFAULT")
502-
501+
503502
def test_iff(self):
504503
# IFF is a synonym for IF in Databricks; it normalizes to IF on output
505504
self.validate_all(

0 commit comments

Comments
 (0)