summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-12-12 16:32:28 +0100
committerVictor Stinner <victor.stinner@gmail.com>2014-12-12 16:32:28 +0100
commit3657d6e986337488f11f3f8db98a54a37d57d24f (patch)
treec6ebcf53f58fdbdebee888267122bae653352e80
parentec1e66a837c7a0b0b4bd9c18d2cb92ebf46423b3 (diff)
downloadtrollius-3657d6e986337488f11f3f8db98a54a37d57d24f.tar.gz
run_aiotest.py calls main(), not runtests()
-rw-r--r--run_aiotest.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/run_aiotest.py b/run_aiotest.py
index 5dfd6f2..691d495 100644
--- a/run_aiotest.py
+++ b/run_aiotest.py
@@ -5,5 +5,4 @@ config = aiotest.TestConfig()
config.asyncio = trollius
config.new_event_pool_policy = trollius.DefaultEventLoopPolicy
config.call_soon_check_closed = True
-#aiotest.run.main(config)
-aiotest.run.runtests(config)
+aiotest.run.main(config)