We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37c1e5b commit 62517e9Copy full SHA for 62517e9
1 file changed
tests/integration/test_charmhub.py
@@ -8,18 +8,18 @@
8
@pytest.mark.asyncio
9
async def test_info(event_loop):
10
async with base.CleanModel() as model:
11
- result = await model.charmhub.info("mattermost")
+ result = await model.charmhub.info("hello-juju")
12
13
- assert result.result.name == "mattermost"
+ assert result.result.name == "hello-juju"
14
15
16
@base.bootstrapped
17
18
async def test_info_with_channel(event_loop):
19
20
- result = await model.charmhub.info("mattermost", "latest/stable")
+ result = await model.charmhub.info("hello-juju", "latest/stable")
21
22
23
assert "latest/stable" in result.result.channel_map
24
25
0 commit comments