summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/testing/suite/test_results.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sqlalchemy/testing/suite/test_results.py')
-rw-r--r--lib/sqlalchemy/testing/suite/test_results.py10
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/sqlalchemy/testing/suite/test_results.py b/lib/sqlalchemy/testing/suite/test_results.py
index 57dfc6847..9ffaa6e04 100644
--- a/lib/sqlalchemy/testing/suite/test_results.py
+++ b/lib/sqlalchemy/testing/suite/test_results.py
@@ -127,12 +127,10 @@ class PercentSchemaNamesTest(fixtures.TablesTest):
Column(
"spaces % more spaces", Integer),
)
- cls.tables.lightweight_percent_table = sql.table('percent%table',
- sql.column(
- "percent%"),
- sql.column(
- "spaces % more spaces"),
- )
+ cls.tables.lightweight_percent_table = sql.table(
+ 'percent%table', sql.column("percent%"),
+ sql.column("spaces % more spaces")
+ )
def test_single_roundtrip(self):
percent_table = self.tables.percent_table