Skip to content

Commit a8d24c0

Browse files
committed
Fix imports to hopefully work in automated testing
1 parent 9d63e76 commit a8d24c0

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

tests/test_b_update.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import pytest
22
from pathlib import Path
3-
from utils_for_tests import normalize_whitespace
3+
from tests.utils_for_tests import normalize_whitespace
44

55
def test_basic_checkout(git_fleximod, test_repo, shared_repos):
66
# Prepare a simple .gitmodules

tests/test_c_required.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import pytest
22
import re
33
from pathlib import Path
4-
from utils_for_tests import normalize_whitespace
4+
from tests.utils_for_tests import normalize_whitespace
55

66
def test_required(git_fleximod, test_repo, shared_repos):
77
file_path = (test_repo / ".gitmodules")

tests/test_d_complex.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import pytest
22
from pathlib import Path
33
from git_fleximod.gitinterface import GitInterface
4-
from utils_for_tests import normalize_whitespace
4+
from tests.utils_for_tests import normalize_whitespace
55

66
def test_complex_checkout(git_fleximod, complex_repo, logger):
77
status = git_fleximod(complex_repo, "status")

tests/test_e_complex_update.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import pytest
22
from pathlib import Path
33
from git_fleximod.gitinterface import GitInterface
4-
from utils_for_tests import normalize_whitespace
4+
from tests.utils_for_tests import normalize_whitespace
55

66
def test_complex_update(git_fleximod, complex_update, logger):
77
status = git_fleximod(complex_update, "status")

0 commit comments

Comments
 (0)