summaryrefslogtreecommitdiff
path: root/tests/schema
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2016-05-04 02:30:48 +0300
committerTim Graham <timograham@gmail.com>2016-05-03 19:31:07 -0400
commitfef3f50e319bd691c8fd3313d982b6c07d66445c (patch)
tree3a8ac7f06b192f4df52628d1fca371e92a1f7e87 /tests/schema
parent3c6b9f0bbd5e37099c4751cdd2a08db508d66e54 (diff)
[1.9.x] Normalized "an SQL" spelling.
Backport of 575a9a791e62de7550761970dc6797271d956c57 from master
Diffstat (limited to 'tests/schema')
-rw-r--r--tests/schema/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/schema/tests.py b/tests/schema/tests.py
index 052f72a3bf..e200f34164 100644
--- a/tests/schema/tests.py
+++ b/tests/schema/tests.py
@@ -1569,7 +1569,7 @@ class SchemaTests(TransactionTestCase):
editor.create_model(Thing)
except OperationalError as e:
self.fail("Errors when applying initial migration for a model "
- "with a table named after a SQL reserved word: %s" % e)
+ "with a table named after an SQL reserved word: %s" % e)
# Check that it's there
list(Thing.objects.all())
# Clean up that table