summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_urllib.py
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2013-04-11 03:54:23 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2013-04-11 03:54:23 (GMT)
commitc7e0980259a62638b73e8261635964113bde8fa5 (patch)
treef67b3d2ed20af669d00e2dd60f7c3c9e6cc2c08e /Lib/test/test_urllib.py
parent8b081b7ba1963c10b7c1a81241c6c7eee829b5b0 (diff)
downloadcpython-c7e0980259a62638b73e8261635964113bde8fa5.zip
cpython-c7e0980259a62638b73e8261635964113bde8fa5.tar.gz
cpython-c7e0980259a62638b73e8261635964113bde8fa5.tar.bz2
normalize whitespace. caught by hook
Diffstat (limited to 'Lib/test/test_urllib.py')
-rw-r--r--Lib/test/test_urllib.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_urllib.py b/Lib/test/test_urllib.py
index cf57047..b4b56d6 100644
--- a/Lib/test/test_urllib.py
+++ b/Lib/test/test_urllib.py
@@ -1417,7 +1417,7 @@ class URL2PathNameTests(unittest.TestCase):
r'C:\foo\bar\spam.foo'
]
for path in list_of_paths:
- self.assertEqual(url2pathname(pathname2url(path)), path)
+ self.assertEqual(url2pathname(pathname2url(path)), path)
class PathName2URLTests(unittest.TestCase):
@@ -1445,7 +1445,7 @@ class PathName2URLTests(unittest.TestCase):
'/////folder/test/',
'///C:/foo/bar/spam.foo']
for path in list_of_paths:
- self.assertEqual(pathname2url(url2pathname(path)), path)
+ self.assertEqual(pathname2url(url2pathname(path)), path)
if __name__ == '__main__':
unittest.main()