### Description This used to work fine: ``` ops_test.model.deploy( "self-signed-certificates", channel="edge", trust=True, ) ``` However now that "self-signed-certificates" has a `1/edge` **and** a `latest/edge` channel, it fails with `juju.errors.JujuError: listing resources for charm "ch:amd64/self-signed-certificates-283": No revision was found in the Store.` ### Urgency Casually reporting ### Python-libjuju version latest ### Juju version 3.6.3 ### Reproduce / Test ```python async def test_foo(): await ops_test.model.deploy( "self-signed-certificates", channel="edge", trust=True, ) ```
Description
This used to work fine:
However now that "self-signed-certificates" has a
1/edgeand alatest/edgechannel, it fails withjuju.errors.JujuError: listing resources for charm "ch:amd64/self-signed-certificates-283": No revision was found in the Store.Urgency
Casually reporting
Python-libjuju version
latest
Juju version
3.6.3
Reproduce / Test