]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
Fix black 7145/head
authorAnton Kovalevich <kai3341@gmail.com>
Tue, 5 Oct 2021 21:36:44 +0000 (00:36 +0300)
committerAnton Kovalevich <kai3341@gmail.com>
Tue, 5 Oct 2021 21:36:44 +0000 (00:36 +0300)
test/dialect/mysql/test_compiler.py

index 46e29ce8c0f5f9cd0fb84bdb5440f573e3459bac..51c0c901bb5409d0409e40b1a316c0e17bbc7064 100644 (file)
@@ -1286,7 +1286,7 @@ class MatchExpressionTest(fixtures.TestBase, AssertsCompiledSQL):
     def test_match_expression_supports_bindparam(self):
         firstname = self.match_table.c.firstname
         lastname = self.match_table.c.lastname
-        against = bindparam('against', required=True)
+        against = bindparam("against", required=True)
 
         expr = match(firstname, lastname, against=against)