Commit bbf53614 authored by Antoine Pitrou's avatar Antoine Pitrou

test_strlit was never run

parent a3d1e2e3
......@@ -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