Skip to content

Commit

Permalink
use series instead of base
Browse files Browse the repository at this point in the history
  • Loading branch information
patriciareinoso committed Dec 18, 2024
1 parent 4afee31 commit fcb829c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/integration/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
NMS_CHARM_CHANNEL = "1.5/edge"
GRAFANA_AGENT_CHARM_NAME = "grafana-agent-k8s"
GRAFANA_AGENT_CHARM_CHANNEL = "latest/stable"
SDCORE_CHARMS_BASE = "[email protected]"
SDCORE_CHARMS_SERIES = "noble"
TIMEOUT = 15 * 60


Expand Down Expand Up @@ -157,7 +157,7 @@ async def _deploy_nrf(ops_test: OpsTest):
NRF_CHARM_NAME,
application_name=NRF_CHARM_NAME,
channel=NRF_CHARM_CHANNEL,
base=SDCORE_CHARMS_BASE,
series=SDCORE_CHARMS_SERIES, # TODO: This should be replaced with base="[email protected]" once it's properly supported # noqa: E501
)
await ops_test.model.integrate(
relation1=f"{NRF_CHARM_NAME}:database", relation2=f"{DB_CHARM_NAME}"
Expand All @@ -172,7 +172,7 @@ async def _deploy_nms(ops_test: OpsTest):
NMS_CHARM_NAME,
application_name=NMS_CHARM_NAME,
channel=NMS_CHARM_CHANNEL,
base=SDCORE_CHARMS_BASE,
series=SDCORE_CHARMS_SERIES, # TODO: This should be replaced with base="[email protected]" once it's properly supported # noqa: E501
)
await ops_test.model.integrate(
relation1=f"{NMS_CHARM_NAME}:common_database", relation2=f"{DB_CHARM_NAME}"
Expand Down

0 comments on commit fcb829c

Please sign in to comment.