Skip to content

Commit

Permalink
Use Path for tested page
Browse files Browse the repository at this point in the history
  • Loading branch information
JuliaS92 committed Sep 13, 2024
1 parent 6d69397 commit 263d5d5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/gui/test_02_import_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from .conftest import APP_FOLDER, data_buf, metadata_buf


TESTED_PAGE = f"{APP_FOLDER}/pages/02_Import Data.py"
TESTED_PAGE = APP_FOLDER / "pages/02_Import Data.py"


def test_page_02_loads_without_input():
Expand Down
2 changes: 1 addition & 1 deletion tests/gui/test_03_data_overview.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from unittest.mock import MagicMock, patch
from .conftest import create_dataset_alphapept, APP_FOLDER

TESTED_PAGE = f"{APP_FOLDER}/pages/03_Data Overview.py"
TESTED_PAGE = APP_FOLDER / "pages/03_Data Overview.py"


def test_page_03_loads_without_input():
Expand Down
2 changes: 1 addition & 1 deletion tests/gui/test_04_preprocessing.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from .conftest import create_dataset_alphapept, APP_FOLDER


TESTED_PAGE = f"{APP_FOLDER}/pages/03_Preprocessing.py"
TESTED_PAGE = APP_FOLDER / "pages/03_Preprocessing.py"


def test_page_04_loads_without_input():
Expand Down

0 comments on commit 263d5d5

Please sign in to comment.