Skip to content

Commit 2b29e05

Browse files
committed
fix directories
1 parent c910445 commit 2b29e05

10 files changed

Lines changed: 5 additions & 5 deletions

src/__init__.py

Whitespace-only changes.
File renamed without changes.
File renamed without changes.

tests/__init__.py

Whitespace-only changes.
File renamed without changes.

test_nose.py renamed to tests/test_nose.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import sample_func
1+
from src import sample_func
22

33

44
def test_add():
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import pytest
2-
from sample_func import add, subtract, multiply, division
2+
from src.sample_func import add, subtract, multiply, division
33

44

55
def test_add():
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import pytest
44

5-
from person import Person
5+
from src.person import Person
66

77

88
class TestPerson:
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import unittest
22

3-
from sample_func import add, subtract, multiply, division
3+
from src.sample_func import add, subtract, multiply, division
44

55

66
class TestOne(unittest.TestCase):
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import unittest
22

3-
from person import Person
3+
from src.person import Person
44

55

66
class TestPerson(unittest.TestCase):

0 commit comments

Comments
 (0)