diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-11-25 09:21:25 -0600 |
|---|---|---|
| committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-11-25 09:21:25 -0600 |
| commit | 7349a22d291c5c8e10cb9842809ab5675e42660b (patch) | |
| tree | 766a70ac9d53f82acbe5ec844cdf581d9f7f6d6f /tests | |
| parent | 3411af3cd195ef79f3320ee9b2ab261e9ee5a3f5 (diff) | |
flake8 fix
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/schema/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/schema/tests.py b/tests/schema/tests.py index d49c291263..d69e5387f1 100644 --- a/tests/schema/tests.py +++ b/tests/schema/tests.py @@ -676,7 +676,7 @@ class SchemaTests(TransactionTestCase): editor.create_model(BookWithLongName) # Find the properly shortened column name column_name = connection.ops.quote_name("author_foreign_key_with_really_long_field_name_id") - column_name = column_name[1:-1].lower() # unquote, and, for Oracle, un-upcase + column_name = column_name[1:-1].lower() # unquote, and, for Oracle, un-upcase # Ensure the table is there and has an index on the column self.assertIn( column_name, |
