From 9e5265b438cc8814f1e2549a3d6aaf9cd2ba4671 Mon Sep 17 00:00:00 2001 From: Guba Sándor <guba.sandor@cloud.bme.hu> Date: Wed, 16 Apr 2014 16:09:39 +0200 Subject: [PATCH] tests: updated tests --- circle/storage/tests/test_models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/circle/storage/tests/test_models.py b/circle/storage/tests/test_models.py index 47d1fb4..7742753 100644 --- a/circle/storage/tests/test_models.py +++ b/circle/storage/tests/test_models.py @@ -78,7 +78,7 @@ class DiskTestCase(TestCase): d.DiskIsNotReady = MockException d.type = "qcow2-norm" d.is_in_use = False - d.ready = False + d.is_ready = False with self.assertRaises(MockException): Disk.save_as(d) @@ -89,4 +89,4 @@ class DiskTestCase(TestCase): def test_undeployed_disk_ready(self): d = self._disk() - assert not d.ready + assert not d.is_ready -- libgit2 0.26.0