Skip to content

Commit 169aad9

Browse files
committed
small tweak
1 parent 56739c7 commit 169aad9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

winloop/_testbase.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Test utilities. Don't use outside of the uvloop project."""
1+
"""Test utilities. Don't use outside of the winloop project."""
22

33

44
import asyncio
@@ -18,7 +18,7 @@
1818
import threading
1919
import time
2020
import unittest
21-
import uvloop
21+
import winloop
2222

2323

2424
class MockPattern(str):
@@ -303,13 +303,13 @@ def _silence_eof_received_warning(self):
303303

304304
class UVTestCase(BaseTestCase):
305305

306-
implementation = 'uvloop'
306+
implementation = 'winloop'
307307

308308
def new_loop(self):
309-
return uvloop.new_event_loop()
309+
return winloop.new_event_loop()
310310

311311
def new_policy(self):
312-
return uvloop.EventLoopPolicy()
312+
return winloop.EventLoopPolicy()
313313

314314

315315
class AIOTestCase(BaseTestCase):

0 commit comments

Comments
 (0)