We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0db0f53 commit a571283Copy full SHA for a571283
1 file changed
tests/integration/test_model.py
@@ -39,8 +39,8 @@ async def test_deploy_local_bundle_dir(event_loop):
39
app1 = model.applications.get('grafana')
40
app2 = model.applications.get('prometheus')
41
with open("/tmp/output", "w") as writer:
42
- writer.write(str(bundle_path)+"\n")
43
- for (k,v) in model.applications.items():
+ writer.write(str(bundle_path) + "\n")
+ for (k, v) in model.applications.items():
44
writer.write(k)
45
assert app1 and app2
46
await model.block_until(lambda: (len(app1.units) == 1 and
0 commit comments