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 e59665d commit cea149b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/integration/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
TLS_CHARM_CHANNEL = "latest/stable"
GRAFANA_AGENT_CHARM_NAME = "grafana-agent-k8s"
GRAFANA_AGENT_CHARM_CHANNEL = "latest/stable"
SDCORE_CHARMS_BASE = "[email protected]"
SDCORE_CHARMS_SERIES = "noble"
TIMEOUT = 5 * 60


Expand Down Expand Up @@ -100,7 +100,7 @@ async def _deploy_amf(ops_test: OpsTest):
AMF_CHARM_NAME,
application_name=AMF_CHARM_NAME,
channel=AMF_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
trust=True,
)
await ops_test.model.integrate(relation1=AMF_CHARM_NAME, relation2=NRF_CHARM_NAME)
Expand Down Expand Up @@ -142,7 +142,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
trust=True,
)
await ops_test.model.integrate(relation1=NRF_CHARM_NAME, relation2=DB_CHARM_NAME)
Expand All @@ -156,7 +156,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 cea149b

Please sign in to comment.