summaryrefslogtreecommitdiff
path: root/tests/model_formsets
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-05-28 17:39:14 -0700
committerTim Graham <timograham@gmail.com>2014-05-29 07:53:02 -0400
commit3d98941d5c1b0ed9ff89cbf5b1cf6af24964d759 (patch)
treee3b0ab5f509805fc112b31f8aa68654859fec26e /tests/model_formsets
parentd099c03789cb88e450002ceaf072990b50052995 (diff)
[1.7.x] Fixed several typos in Django
Backport of 1dcc603eff from master
Diffstat (limited to 'tests/model_formsets')
-rw-r--r--tests/model_formsets/tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/model_formsets/tests.py b/tests/model_formsets/tests.py
index af002c32c6..07f5ccf18b 100644
--- a/tests/model_formsets/tests.py
+++ b/tests/model_formsets/tests.py
@@ -1155,7 +1155,7 @@ class ModelFormsetTest(TestCase):
def test_inlineformset_factory_with_null_fk(self):
# inlineformset_factory tests with fk having null=True. see #9462.
- # create some data that will exbit the issue
+ # create some data that will exhibit the issue
team = Team.objects.create(name="Red Vipers")
Player(name="Timmy").save()
Player(name="Bobby", team=team).save()