Skip to content

Commit dc510b1

Browse files
committed
test: fixed test
1 parent a44a66f commit dc510b1

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tests/conftest.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
import logging
22

33
import pytest
4-
5-
import aw_server
4+
from aw_server.server import create_app
65

76
logging.basicConfig(level=logging.WARN)
87

98

109
@pytest.fixture(scope="session")
1110
def app():
12-
return aw_server.create_app("127.0.0.1", testing=True)
11+
return create_app("127.0.0.1", testing=True)
1312

1413

1514
@pytest.fixture(scope="session")

0 commit comments

Comments
 (0)