Skip to content

Commit 62517e9

Browse files
Fix the integration for info request
The original charm we used for the integration tests have gone, let's pick one that we can control.
1 parent 37c1e5b commit 62517e9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tests/integration/test_charmhub.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@
88
@pytest.mark.asyncio
99
async def test_info(event_loop):
1010
async with base.CleanModel() as model:
11-
result = await model.charmhub.info("mattermost")
11+
result = await model.charmhub.info("hello-juju")
1212

13-
assert result.result.name == "mattermost"
13+
assert result.result.name == "hello-juju"
1414

1515

1616
@base.bootstrapped
1717
@pytest.mark.asyncio
1818
async def test_info_with_channel(event_loop):
1919
async with base.CleanModel() as model:
20-
result = await model.charmhub.info("mattermost", "latest/stable")
20+
result = await model.charmhub.info("hello-juju", "latest/stable")
2121

22-
assert result.result.name == "mattermost"
22+
assert result.result.name == "hello-juju"
2323
assert "latest/stable" in result.result.channel_map
2424

2525

0 commit comments

Comments
 (0)