diff options
author | Ezio Melotti <ezio.melotti@gmail.com> | 2013-11-02 17:50:02 +0200 |
---|---|---|
committer | Ezio Melotti <ezio.melotti@gmail.com> | 2013-11-02 17:50:02 +0200 |
commit | 1943c8a112711a0b77eaa10258650702e17e7882 (patch) | |
tree | f4795c54d905ffdde0037cef7fd412be7c9c0c00 /Lib/test/test_htmlparser.py | |
parent | 88ebfb129b59dc8a2b855fc93fcf32457128d64d (diff) | |
parent | 5028f4d461fb0dbbfe7f0a952021af28b596d6af (diff) | |
download | cpython-1943c8a112711a0b77eaa10258650702e17e7882.tar.gz cpython-1943c8a112711a0b77eaa10258650702e17e7882.zip |
Merge test_htmlparser changes from 3.3.
Diffstat (limited to 'Lib/test/test_htmlparser.py')
-rw-r--r-- | Lib/test/test_htmlparser.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/Lib/test/test_htmlparser.py b/Lib/test/test_htmlparser.py index 6ebf5b8e240..57a0b95c751 100644 --- a/Lib/test/test_htmlparser.py +++ b/Lib/test/test_htmlparser.py @@ -764,11 +764,5 @@ class AttributesTolerantTestCase(AttributesStrictTestCase): ("data", "spam"), ("endtag", "a")]) - -def test_main(): - support.run_unittest(HTMLParserStrictTestCase, HTMLParserTolerantTestCase, - AttributesStrictTestCase, AttributesTolerantTestCase) - - if __name__ == "__main__": - test_main() + unittest.main() |