Skip to content

Commit 37a8471

Browse files
committed
Add MockMicrogridClient to default export of tests.utils
Signed-off-by: Mathias L. Baumann <[email protected]>
1 parent a95bc8f commit 37a8471

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

tests/timeseries/mock_microgrid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
EVChargerComponentState,
2626
InverterType,
2727
)
28-
from tests.utils.mock_microgrid_client import MockMicrogridClient
28+
from tests.utils import MockMicrogridClient
2929

3030
from ..utils.component_data_wrapper import (
3131
BatteryDataWrapper,

tests/utils/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
"""Utilities for testing purposes."""
55

66
from ._a_sequence import a_sequence
7+
from .mock_microgrid_client import MockMicrogridClient
78

89
__all__ = [
910
"a_sequence",
11+
"MockMicrogridClient",
1012
]

0 commit comments

Comments
 (0)