diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2019-04-11 14:23:29 -0400 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2019-04-11 14:23:29 -0400 |
commit | 17413bbf10c3b993d343c28035713a23c745712c (patch) | |
tree | 61c126a4101874d671288396c2dbf9432e3e86fc /test/dialect/mssql/test_compiler.py | |
parent | 53c65ed93ade1fc99c75e1f0bf055cd129596c06 (diff) | |
download | sqlalchemy-17413bbf10c3b993d343c28035713a23c745712c.tar.gz |
Black updates
Updating for a few black adjustments
Change-Id: I9c8abadd1ccd6173e6d68dd62f14cec208cc304a
Diffstat (limited to 'test/dialect/mssql/test_compiler.py')
-rw-r--r-- | test/dialect/mssql/test_compiler.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/dialect/mssql/test_compiler.py b/test/dialect/mssql/test_compiler.py index 26e6d152c..339cc7590 100644 --- a/test/dialect/mssql/test_compiler.py +++ b/test/dialect/mssql/test_compiler.py @@ -389,8 +389,8 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL): ) q = select( - [table1.c.myid, sql.literal('bar').label('c1')], - order_by=[table1.c.name + '-'] + [table1.c.myid, sql.literal("bar").label("c1")], + order_by=[table1.c.name + "-"], ).alias("foo") crit = q.c.myid == table1.c.myid dialect = mssql.dialect() @@ -402,9 +402,9 @@ class CompileTest(fixtures.TestBase, AssertsCompiledSQL): "myid, ? AS c1 FROM mytable) AS foo, mytable WHERE " "foo.myid = mytable.myid", dialect=dialect, - checkparams={'param_1': 'bar'}, + checkparams={"param_1": "bar"}, # if name_1 is included, too many parameters are passed to dbapi - checkpositional=('bar', ) + checkpositional=("bar",), ) def test_force_schema_quoted_name_w_dot_case_insensitive(self): |