mirror of
https://github.com/django/django.git
synced 2025-08-04 02:48:35 +00:00
Fixed two test failures under Oracle
This commit is contained in:
parent
980eda0190
commit
056be4358d
2 changed files with 8 additions and 2 deletions
|
@ -182,7 +182,8 @@ class SchemaTests(TransactionTestCase):
|
|||
# Ensure the field is right afterwards
|
||||
columns = self.column_classes(Author)
|
||||
self.assertEqual(columns['surname'][0], "CharField")
|
||||
self.assertEqual(columns['surname'][1][6], False)
|
||||
self.assertEqual(columns['surname'][1][6],
|
||||
connection.features.interprets_empty_strings_as_nulls)
|
||||
|
||||
def test_alter(self):
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue