diff options
| author | Rajesh Veeranki <rveeranki01@gmail.com> | 2017-10-31 21:21:02 +0700 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2017-10-31 10:21:02 -0400 |
| commit | 5e1a356060b6d9b3efa583b5a2c419d1fd630054 (patch) | |
| tree | 7af3f7277241f15959996261e04c8c30dddd09ff | |
| parent | 617686e226231fe8ad3f2e49d3efabf6f5f434d3 (diff) | |
Fixed typo in tests/many_to_many/tests.py.
| -rw-r--r-- | tests/many_to_many/tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/many_to_many/tests.py b/tests/many_to_many/tests.py index 5b1c6e1516..5360b978c2 100644 --- a/tests/many_to_many/tests.py +++ b/tests/many_to_many/tests.py @@ -27,10 +27,10 @@ class ManyToManyTests(TestCase): def test_add(self): # Create an Article. - a5 = Article(headline='Django lets you reate Web apps easily') + a5 = Article(headline='Django lets you create Web apps easily') # You can't associate it with a Publication until it's been saved. msg = ( - '"<Article: Django lets you reate Web apps easily>" needs to have ' + '"<Article: Django lets you create Web apps easily>" needs to have ' 'a value for field "id" before this many-to-many relationship can be used.' ) with self.assertRaisesMessage(ValueError, msg): |
