From 5e1a356060b6d9b3efa583b5a2c419d1fd630054 Mon Sep 17 00:00:00 2001 From: Rajesh Veeranki <rveeranki01@gmail.com> Date: Tue, 31 Oct 2017 21:21:02 +0700 Subject: [PATCH] Fixed typo in tests/many_to_many/tests.py. --- tests/many_to_many/tests.py | 4 ++-- 1 file 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):