From 3757ffa51a3ff5919278165aaf906c8d2f9940c0 Mon Sep 17 00:00:00 2001 From: Anton Kovalevich Date: Wed, 6 Oct 2021 00:36:44 +0300 Subject: [PATCH] Fix black --- test/dialect/mysql/test_compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/dialect/mysql/test_compiler.py b/test/dialect/mysql/test_compiler.py index 46e29ce8c0..51c0c901bb 100644 --- a/test/dialect/mysql/test_compiler.py +++ b/test/dialect/mysql/test_compiler.py @@ -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) -- 2.47.3