From 97e637a87fb45c4de970cca6cb783d93473c9d15 Mon Sep 17 00:00:00 2001 From: "luz.paz" Date: Wed, 1 Aug 2018 12:55:53 -0400 Subject: Fixed typos in comments and docs. --- tests/httpwrappers/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/httpwrappers') diff --git a/tests/httpwrappers/tests.py b/tests/httpwrappers/tests.py index 985380cc57..24260ae610 100644 --- a/tests/httpwrappers/tests.py +++ b/tests/httpwrappers/tests.py @@ -733,7 +733,7 @@ class CookieTests(unittest.TestCase): # Chunks without an equals sign appear as unnamed values per # https://bugzilla.mozilla.org/show_bug.cgi?id=169091 self.assertIn('django_language', parse_cookie('abc=def; unnamed; django_language=en')) - # Even a double quote may be an unamed value. + # Even a double quote may be an unnamed value. self.assertEqual(parse_cookie('a=b; "; c=d'), {'a': 'b', '': '"', 'c': 'd'}) # Spaces in names and values, and an equals sign in values. self.assertEqual(parse_cookie('a b c=d e = f; gh=i'), {'a b c': 'd e = f', 'gh': 'i'}) -- cgit v1.3