summaryrefslogtreecommitdiff
path: root/Lib/test/test_pyclbr.py
diff options
context:
space:
mode:
authorZachary Ware <zachary.ware@gmail.com>2015-12-04 23:32:23 -0600
committerZachary Ware <zachary.ware@gmail.com>2015-12-04 23:32:23 -0600
commit0a9b40d628c390d98e293c7ba66954d5ad45f43d (patch)
treefa8d25b4527b21def6739e474d474322eda602d5 /Lib/test/test_pyclbr.py
parent6344c93725e5f925905a33ce567797668a44b831 (diff)
downloadcpython-0a9b40d628c390d98e293c7ba66954d5ad45f43d.tar.gz
Issue #25795: Fix several tests to run independently.
These were broken in 3aec776fc796 when they were converted away from using support.run_unittest(). Oops :) Initial patch by Felippe da Motta Raposo.
Diffstat (limited to 'Lib/test/test_pyclbr.py')
-rw-r--r--Lib/test/test_pyclbr.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_pyclbr.py b/Lib/test/test_pyclbr.py
index cab430b4bd..6ffbbbda27 100644
--- a/Lib/test/test_pyclbr.py
+++ b/Lib/test/test_pyclbr.py
@@ -5,7 +5,7 @@
import sys
from types import FunctionType, MethodType, BuiltinFunctionType
import pyclbr
-from unittest import TestCase
+from unittest import TestCase, main as unittest_main
StaticMethodType = type(staticmethod(lambda: None))
ClassMethodType = type(classmethod(lambda c: None))
@@ -173,4 +173,4 @@ class PyclbrTest(TestCase):
if __name__ == "__main__":
- unittest.main()
+ unittest_main()