diff options
author | Senthil Kumaran <skumaran@gatech.edu> | 2017-03-30 06:02:29 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-30 06:02:29 (GMT) |
commit | e6911a44f69c0d302db60f49952a9cf69da69a2b (patch) | |
tree | 9d911d29e52be4117db273c617cf01e44bbc8630 | |
parent | c3c7ef088583cc12bd218138036d1edb6de9c63f (diff) | |
download | cpython-e6911a44f69c0d302db60f49952a9cf69da69a2b.zip cpython-e6911a44f69c0d302db60f49952a9cf69da69a2b.tar.gz cpython-e6911a44f69c0d302db60f49952a9cf69da69a2b.tar.bz2 |
Remove an unrequired TODO in test_urllib2. (#897)
-rw-r--r-- | Lib/test/test_urllib2.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/test/test_urllib2.py b/Lib/test/test_urllib2.py index 34329f8..308acb3 100644 --- a/Lib/test/test_urllib2.py +++ b/Lib/test/test_urllib2.py @@ -1414,7 +1414,6 @@ class HandlerTests(unittest.TestCase): self.assertEqual(req.host, "proxy.example.com:3128") self.assertEqual(req.get_header("Proxy-authorization"), "FooBar") - # TODO: This should be only for OSX @unittest.skipUnless(sys.platform == 'darwin', "only relevant for OSX") def test_osx_proxy_bypass(self): bypass = { |