We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df07820 commit a6cc813Copy full SHA for a6cc813
1 file changed
tests/integration/test_model.py
@@ -49,11 +49,11 @@ async def test_deploy_local_bundle_dir(event_loop):
49
async with base.CleanModel() as model:
50
await model.deploy(str(bundle_path))
51
52
- keystone = model.applications.get('keystone')
53
- mysql = model.applications.get('mysql-innodb')
54
- assert keystone and mysql
55
- await model.block_until(lambda: (len(keystone.units) == 1 and
56
- len(mysql.units) == 1),
+ app1 = model.applications.get('grafana')
+ app2 = model.applications.get('prometheus')
+ assert app1 and app2
+ await model.block_until(lambda: (len(app1.units) == 1 and
+ len(app2.units) == 1),
57
timeout=60 * 4)
58
59
0 commit comments