diff --git a/tests/integration/conftest.py b/tests/integration/conftest.py index 6241d7f..f3a02f7 100644 --- a/tests/integration/conftest.py +++ b/tests/integration/conftest.py @@ -18,6 +18,7 @@ import yaml from boto3 import client from botocore.config import Config +from juju.model import Model from ops.model import ActiveStatus, Application from pytest import FixtureRequest, fixture from pytest_operator.plugin import OpsTest @@ -58,7 +59,7 @@ def charm_file(request): @pytest_asyncio.fixture(scope="module", name="model") -async def model_fixture(ops_test: OpsTest) -> ops.model.Model: +async def model_fixture(ops_test: OpsTest) -> Model: """Provide current test model.""" assert ops_test.model MODEL_CONFIG = {"logging-config": "=INFO;unit=DEBUG"}