Skip to content

Commit 42ca44f

Browse files
committed
UGH
1 parent 7912088 commit 42ca44f

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

tests/conftest.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import pytest
44

5-
import gopy.app
5+
import pygoroutine.app
66

77

88
@pytest.fixture(scope="session", autouse=True)
@@ -21,5 +21,5 @@ def manage_global_goroutine_manager():
2121

2222
# The code after the 'yield' runs at the very end of the test session.
2323
print("\nShutting down global goroutine manager...")
24-
if gopy.app._default_manager._is_running:
25-
gopy.app._default_manager.shutdown()
24+
if pygoroutine.app._default_manager._is_running:
25+
pygoroutine.app._default_manager.shutdown()

tests/test_app.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import time
33

44
import pytest
5+
56
from pygoroutine import GoroutineManager
67

78

0 commit comments

Comments
 (0)