diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-05-28 17:39:14 -0700 |
|---|---|---|
| committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-05-28 17:39:14 -0700 |
| commit | 1dcc603efff8229838f27019668d864a0bcbfa59 (patch) | |
| tree | 8c67764f440faeb095143498383ca57ecd4f09be /tests/model_formsets | |
| parent | e79725cdf90e3271626ed66f70b63640d3fcc521 (diff) | |
Fixed several typos in Django
Diffstat (limited to 'tests/model_formsets')
| -rw-r--r-- | tests/model_formsets/tests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/model_formsets/tests.py b/tests/model_formsets/tests.py index 2913f6c0ab..19c0a6d9d5 100644 --- a/tests/model_formsets/tests.py +++ b/tests/model_formsets/tests.py @@ -1165,7 +1165,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() |
