Skip to content

Commit

Permalink
Merge pull request #12 from project-delphi/fix_tests
Browse files Browse the repository at this point in the history
test(fix): update relative path of imported modules
  • Loading branch information
project-delphi authored Feb 14, 2024
2 parents ae20db1 + 53044f0 commit 52bb850
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/tests/module_1_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Replace with actual content.
"""

from utils.module_1 import hello
from src.utils.module_1 import hello


def test_hello() -> None:
Expand Down
2 changes: 1 addition & 1 deletion src/tests/module_2_test.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Placeholder for module 2 tests docstring."""

from utils.module_2 import bye
from src.utils.module_2 import bye


def test_bye() -> None:
Expand Down

0 comments on commit 52bb850

Please sign in to comment.