From 5ca8d8494585ce77f971dfb1d71526a71b7aa1ae Mon Sep 17 00:00:00 2001 From: RamonWill Date: Sat, 4 Jul 2020 14:30:19 +0100 Subject: [PATCH] resolves #5333 typo correction 'explcit' should be 'explicit'. --- test/sql/test_deprecations.py | 8 ++++++-- test/sql/test_quote.py | 4 ++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/test/sql/test_deprecations.py b/test/sql/test_deprecations.py index 4f018fcc9f..e9f5bbcbdf 100644 --- a/test/sql/test_deprecations.py +++ b/test/sql/test_deprecations.py @@ -533,7 +533,9 @@ class SelectableTest(fixtures.TestBase, AssertsCompiledSQL): class QuoteTest(fixtures.TestBase, AssertsCompiledSQL): __dialect__ = "default" - def test_literal_column_label_embedded_select_samename_explcit_quote(self): + def test_literal_column_label_embedded_select_samename_explicit_quote( + self, + ): col = sql.literal_column("NEEDS QUOTES").label( quoted_name("NEEDS QUOTES", True) ) @@ -547,7 +549,9 @@ class QuoteTest(fixtures.TestBase, AssertsCompiledSQL): '(SELECT NEEDS QUOTES AS "NEEDS QUOTES") AS anon_1', ) - def test_literal_column_label_embedded_select_diffname_explcit_quote(self): + def test_literal_column_label_embedded_select_diffname_explicit_quote( + self, + ): col = sql.literal_column("NEEDS QUOTES").label( quoted_name("NEEDS QUOTES_", True) ) diff --git a/test/sql/test_quote.py b/test/sql/test_quote.py index 627626994c..b4d97a1b90 100644 --- a/test/sql/test_quote.py +++ b/test/sql/test_quote.py @@ -729,7 +729,7 @@ class QuoteTest(fixtures.TestBase, AssertsCompiledSQL): '"NEEDS QUOTES_") AS anon_1', ) - def test_literal_column_label_alias_samename_explcit_quote(self): + def test_literal_column_label_alias_samename_explicit_quote(self): col = sql.literal_column("NEEDS QUOTES").label( quoted_name("NEEDS QUOTES", True) ) @@ -740,7 +740,7 @@ class QuoteTest(fixtures.TestBase, AssertsCompiledSQL): '(SELECT NEEDS QUOTES AS "NEEDS QUOTES") AS anon_1', ) - def test_literal_column_label_alias_diffname_explcit_quote(self): + def test_literal_column_label_alias_diffname_explicit_quote(self): col = sql.literal_column("NEEDS QUOTES").label( quoted_name("NEEDS QUOTES_", True) ) -- 2.39.5