Fixed #29103 -- Removed bad 'b'-prefix added by MySQL's SchemaEditor.quote_value().

This commit is contained in:
Claude Paroz 2018-02-09 16:04:00 +01:00 committed by Tim Graham
parent aa0ee372cd
commit 3c4ff21763
3 changed files with 8 additions and 5 deletions

View file

@ -9,6 +9,7 @@ class SchemaEditorTests(TestCase):
def test_quote_value(self):
editor = connection.schema_editor()
tested_values = [
('string', "'string'"),
(42, '42'),
(1.754, '1.754'),
(False, '0'),