summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2012-11-25 19:31:30 +0100
committerAymeric Augustin <aymeric.augustin@m4x.org>2012-11-25 19:31:53 +0100
commitf89901dc0525f3ea1ca023aef4fd0862514bf550 (patch)
tree0c50532bb506bfcceb45444181b914631b7a0e91 /tests
parenta5d47415f47025b014e580af1533e9023dc32945 (diff)
Fixed two typos.
Diffstat (limited to 'tests')
-rw-r--r--tests/modeltests/raw_query/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/modeltests/raw_query/models.py b/tests/modeltests/raw_query/models.py
index 823fc76eee..e7e221dc6e 100644
--- a/tests/modeltests/raw_query/models.py
+++ b/tests/modeltests/raw_query/models.py
@@ -13,7 +13,7 @@ class Author(models.Model):
# treated differently than fields.
for k in kwargs:
assert k in [f.attname for f in self._meta.fields], \
- "Author.__init__ got an unexpected paramater: %s" % k
+ "Author.__init__ got an unexpected parameter: %s" % k
class Book(models.Model):
title = models.CharField(max_length=255)