diff options
author | Claude Paroz <claude@2xlibre.net> | 2018-02-09 16:04:00 +0100 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2018-03-17 16:36:54 -0400 |
commit | 3c4ff2176323dd20507e35658599da220fbe1741 (patch) | |
tree | 7c03157fee56f9254aab476e90213ad337cb4c0e /tests/schema | |
parent | aa0ee372cd6644b687e37dd63d8df9cc75f6121e (diff) | |
download | django-3c4ff2176323dd20507e35658599da220fbe1741.tar.gz |
Fixed #29103 -- Removed bad 'b'-prefix added by MySQL's SchemaEditor.quote_value().
Diffstat (limited to 'tests/schema')
-rw-r--r-- | tests/schema/test_logging.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/schema/test_logging.py b/tests/schema/test_logging.py index 8c7313abb1..21e3c9e4a6 100644 --- a/tests/schema/test_logging.py +++ b/tests/schema/test_logging.py @@ -1,9 +1,9 @@ from django.db import connection -from django.test import SimpleTestCase +from django.test import TestCase from django.test.utils import patch_logger -class SchemaLoggerTests(SimpleTestCase): +class SchemaLoggerTests(TestCase): def test_extra_args(self): editor = connection.schema_editor(collect_sql=True) |