bpo-45229: Make test_http_cookiejar discoverable (GH-29004)

(cherry picked from commit b3f0ceae91)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
This commit is contained in:
Miss Islington (bot) 2021-10-17 09:46:55 -07:00 committed by GitHub
parent ac1b7a3319
commit 1dbf9c86b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1913,14 +1913,5 @@ class LWPCookieTests(unittest.TestCase):
self.assertNotEqual(counter["session_before"], 0)
def test_main(verbose=None):
test.support.run_unittest(
DateTimeTests,
HeaderTests,
CookieTests,
FileCookieJarTests,
LWPCookieTests,
)
if __name__ == "__main__":
test_main(verbose=True)
unittest.main()