summaryrefslogtreecommitdiff
path: root/Lib/test/test_cookie.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_cookie.py')
-rw-r--r--Lib/test/test_cookie.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/Lib/test/test_cookie.py b/Lib/test/test_cookie.py
index a275cf239c..bf3e9af721 100644
--- a/Lib/test/test_cookie.py
+++ b/Lib/test/test_cookie.py
@@ -1,4 +1,3 @@
-
# Simple test suite for Cookie.py
import Cookie
@@ -8,8 +7,8 @@ import Cookie
cases = [
('chips=ahoy; vienna=finger', {'chips':'ahoy', 'vienna':'finger'}),
('keebler="E=mc2; L=\\"Loves\\"; fudge=\\012;";',
- {'keebler' : 'E=mc2; L="Loves"; fudge=\012;'}),
- ]
+ {'keebler' : 'E=mc2; L="Loves"; fudge=\012;'}),
+ ]
for data, dict in cases:
C = Cookie.SimpleCookie() ; C.load(data)
@@ -37,4 +36,3 @@ C.load('Customer="WILE_E_COYOTE"; Version="1"; Path="/acme"')
assert C['Customer'].value == 'WILE_E_COYOTE'
assert C['Customer']['version'] == '1'
assert C['Customer']['path'] == '/acme'
-