Skip to content

Commit d868018

Browse files
committed
update: move to test/py
1 parent e4c5fb2 commit d868018

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

tests/py/__init__.py

Whitespace-only changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def __init__(self, *args, **kwargs):
1515
super(EndpointBaseTest, self).__init__(*args, **kwargs)
1616

1717
def get_file_path(self, filename):
18-
return os.path.join(os.path.dirname(__file__), "py", "data", filename)
18+
return os.path.join(os.path.dirname(__file__), "data", filename)
1919

2020
def get_content(self, filename):
2121
with open(self.get_file_path(filename)) as f:

tests/py/integration/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22

33
import pytest
4-
from tests.conftest import EndpointBaseTest
4+
from tests.py.conftest import EndpointBaseTest
55

66
DEFAULT_TEST_SECURE = "False"
77
DEFAULT_TEST_VERSION = "2018-10-01"

tests/py/unit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from requests import Response
22

3-
from tests.conftest import EndpointBaseTest
3+
from tests.py.conftest import EndpointBaseTest
44

55

66
class EndpointBaseUnitTest(EndpointBaseTest):

0 commit comments

Comments
 (0)