summaryrefslogtreecommitdiff
path: root/Lib/test/test_asyncio/test_selectors.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_asyncio/test_selectors.py')
-rw-r--r--Lib/test/test_asyncio/test_selectors.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_asyncio/test_selectors.py b/Lib/test/test_asyncio/test_selectors.py
index 2f7dc69db4..db5b3ece8d 100644
--- a/Lib/test/test_asyncio/test_selectors.py
+++ b/Lib/test/test_asyncio/test_selectors.py
@@ -143,3 +143,7 @@ class BaseSelectorTests(unittest.TestCase):
if hasattr(selectors.DefaultSelector, 'fileno'):
def test_fileno(self):
self.assertIsInstance(selectors.DefaultSelector().fileno(), int)
+
+
+if __name__ == '__main__':
+ unittest.main()