Commit b63a450c authored by Antoine Pitrou's avatar Antoine Pitrou

test_strlit was never run

parents 821e4cfd bbf53614
......@@ -32,6 +32,7 @@ import sys
import shutil
import tempfile
import unittest
import test.support
TEMPLATE = r"""# coding: %s
......@@ -142,7 +143,8 @@ class TestLiterals(unittest.TestCase):
self.check_encoding("latin9")
def test_main():
test.support.run_unittest(__name__)
if __name__ == "__main__":
# Hack so that error messages containing non-ASCII can be printed
sys.stdout._encoding = sys.stderr._encoding = "utf-8"
unittest.main()
test_main()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment