Skip to content

Commit 8cbeac7

Browse files
committed
Move load fixtures to tests/fixtures root
1 parent fcd54c3 commit 8cbeac7

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

β€Žtests/fixtures/__init__.pyβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
from . import config # noqa
1+
from . import config, _util # noqa
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import os
22

3-
from ._util import loadfixture
3+
from .._util import loadfixture
44

5-
unexpanded_yaml = loadfixture('expand2-unexpanded.yaml')
6-
expanded_yaml = loadfixture('expand2-expanded.yaml').format(
5+
unexpanded_yaml = loadfixture('config/expand2-unexpanded.yaml')
6+
expanded_yaml = loadfixture('config/expand2-expanded.yaml').format(
77
HOME=os.path.expanduser('~')
88
)
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from ._util import loadfixture
1+
from .._util import loadfixture
22

3-
before = loadfixture("shell_command_before_session.yaml")
4-
expected = loadfixture("shell_command_before_session-expected.yaml")
3+
before = loadfixture("config/shell_command_before_session.yaml")
4+
expected = loadfixture("config/shell_command_before_session-expected.yaml")

0 commit comments

Comments
Β (0)