Skip to content

Commit 76eaabf

Browse files
committed
Renamed module
1 parent 1b64e5a commit 76eaabf

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

src/tdamapper/_run_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from tdamapper._app import main
1+
from tdamapper.app import main
22

33

44
def run():
File renamed without changes.

tests/test_unit_app.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,12 @@
1-
import sys
2-
31
import pytest
4-
from nicegui import ui
52
from nicegui.testing import User
63

7-
from tdamapper import _app
4+
from tdamapper import app
85

96
pytest_plugins = ["nicegui.testing.user_plugin"]
107

118

12-
@pytest.mark.module_under_test(_app)
9+
@pytest.mark.module_under_test(app)
1310
async def test_run_mapper(user: User) -> None:
1411
await user.open("/")
1512
await user.should_see("Load Data")

0 commit comments

Comments
 (0)