We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56739c7 commit 169aad9Copy full SHA for 169aad9
winloop/_testbase.py
@@ -1,4 +1,4 @@
1
-"""Test utilities. Don't use outside of the uvloop project."""
+"""Test utilities. Don't use outside of the winloop project."""
2
3
4
import asyncio
@@ -18,7 +18,7 @@
18
import threading
19
import time
20
import unittest
21
-import uvloop
+import winloop
22
23
24
class MockPattern(str):
@@ -303,13 +303,13 @@ def _silence_eof_received_warning(self):
303
304
class UVTestCase(BaseTestCase):
305
306
- implementation = 'uvloop'
+ implementation = 'winloop'
307
308
def new_loop(self):
309
- return uvloop.new_event_loop()
+ return winloop.new_event_loop()
310
311
def new_policy(self):
312
- return uvloop.EventLoopPolicy()
+ return winloop.EventLoopPolicy()
313
314
315
class AIOTestCase(BaseTestCase):
0 commit comments