diff options
author | Miss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-10-14 01:59:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-14 01:59:12 (GMT) |
commit | 8b4642d3288e187faad24283c949ecf53fecad5b (patch) | |
tree | 04db98255cb887ebd5a18dbc5c30ac1a604dbcbf /Lib | |
parent | 76b1913daf883b6592815d139f62f3a7fbe3c322 (diff) | |
download | cpython-8b4642d3288e187faad24283c949ecf53fecad5b.zip cpython-8b4642d3288e187faad24283c949ecf53fecad5b.tar.gz cpython-8b4642d3288e187faad24283c949ecf53fecad5b.tar.bz2 |
bpo-41939: always enable test_site.test_license_exists_at_url (GH-22688)
(cherry picked from commit 6a48518e8dac3521ff387ee67cdf33783114a257)
Co-authored-by: Ned Deily <nad@python.org>
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_site.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_site.py b/Lib/test/test_site.py index b95c108..6b3dba0 100644 --- a/Lib/test/test_site.py +++ b/Lib/test/test_site.py @@ -492,8 +492,6 @@ class ImportSideEffectTests(unittest.TestCase): @test.support.requires_resource('network') @test.support.system_must_validate_cert - @unittest.skipUnless(sys.version_info[3] == 'final', - 'only for released versions') @unittest.skipUnless(hasattr(urllib.request, "HTTPSHandler"), 'need SSL support to download license') def test_license_exists_at_url(self): |