summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2013-07-16 15:45:31 (GMT)
committerR David Murray <rdmurray@bitdance.com>2013-07-16 15:45:31 (GMT)
commitb5c9dfdab360b164f3c1a28ade860ecdde8e81fc (patch)
treee8f5d46c2c475281060dac32b30a9d954c161876 /Lib
parentd15642e4283d9f518adfa26fdebc4d1dcb62e3a6 (diff)
downloadcpython-b5c9dfdab360b164f3c1a28ade860ecdde8e81fc.zip
cpython-b5c9dfdab360b164f3c1a28ade860ecdde8e81fc.tar.gz
cpython-b5c9dfdab360b164f3c1a28ade860ecdde8e81fc.tar.bz2
Closes #18475: add unittest.main() to test_email/test_inversions.
Patch by Vajrasky Kok.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_email/test_inversion.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_email/test_inversion.py b/Lib/test/test_email/test_inversion.py
index 6f5c534..f36e33d 100644
--- a/Lib/test/test_email/test_inversion.py
+++ b/Lib/test/test_email/test_inversion.py
@@ -43,3 +43,7 @@ class TestInversion(TestEmailBase, unittest.TestCase):
"""),),
}
+
+
+if __name__ == '__main__':
+ unittest.main()