Skip to content

Commit

Permalink
fix path to sample files
Browse files Browse the repository at this point in the history
  • Loading branch information
rwood-97 committed Sep 4, 2024
1 parent 02f0e7f commit 92e579a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test_text_spotting/test_deepsolo_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

@pytest.fixture
def sample_dir():
return pathlib.Path(__file__).resolve().parent.parent / "sample_files"
return pathlib.Path(__file__).resolve().parent.parent / "tests" / "sample_files"


@pytest.fixture
Expand Down
2 changes: 1 addition & 1 deletion test_text_spotting/test_dptext_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

@pytest.fixture
def sample_dir():
return pathlib.Path(__file__).resolve().parent.parent / "sample_files"
return pathlib.Path(__file__).resolve().parent.parent / "tests" / "sample_files"


@pytest.fixture
Expand Down
2 changes: 1 addition & 1 deletion test_text_spotting/test_maptext_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

@pytest.fixture
def sample_dir():
return pathlib.Path(__file__).resolve().parent.parent / "sample_files"
return pathlib.Path(__file__).resolve().parent.parent / "tests" / "sample_files"


@pytest.fixture
Expand Down

0 comments on commit 92e579a

Please sign in to comment.