We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe4f502 commit 60e4d9fCopy full SHA for 60e4d9f
molecule/default/tests/test_hypervisor_free.py
@@ -70,7 +70,7 @@ def test_hypervisor_free(host):
70
assert "vcpus" in stats
71
assert "vcpus_used" in stats
72
assert "free_disk_gb" in stats
73
- assert ((stats['memory_mb']) * ram_ratio -
74
- (stats['memory_mb_used'])) / 1024 > 0
+ assert ((stats['memory_mb']) * ram_ratio
+ - (stats['memory_mb_used'])) / 1024 > 0
75
assert (stats['vcpus'] * cpu_ratio - stats['vcpus_used']) > 0
76
assert (stats['free_disk_gb'] * disk_ratio) > 0
0 commit comments