@@ -32,7 +32,7 @@ def test_update_quota(self):
3232 q = cs .quota_classes .get ('test' )
3333 q .update (volumes = 2 , snapshots = 2 , gigabytes = 2000 ,
3434 backups = 2 , backup_gigabytes = 2000 ,
35- consistencygroups = 2 , per_volume_gigabytes = 100 )
35+ per_volume_gigabytes = 100 )
3636 cs .assert_called ('PUT' , '/os-quota-class-sets/test' )
3737 self ._assert_request_id (q )
3838
@@ -44,7 +44,6 @@ def test_refresh_quota(self):
4444 self .assertEqual (q .gigabytes , q2 .gigabytes )
4545 self .assertEqual (q .backups , q2 .backups )
4646 self .assertEqual (q .backup_gigabytes , q2 .backup_gigabytes )
47- self .assertEqual (q .consistencygroups , q2 .consistencygroups )
4847 self .assertEqual (q .per_volume_gigabytes , q2 .per_volume_gigabytes )
4948 q2 .volumes = 0
5049 self .assertNotEqual (q .volumes , q2 .volumes )
@@ -56,8 +55,6 @@ def test_refresh_quota(self):
5655 self .assertNotEqual (q .backups , q2 .backups )
5756 q2 .backup_gigabytes = 0
5857 self .assertNotEqual (q .backup_gigabytes , q2 .backup_gigabytes )
59- q2 .consistencygroups = 0
60- self .assertNotEqual (q .consistencygroups , q2 .consistencygroups )
6158 q2 .per_volume_gigabytes = 0
6259 self .assertNotEqual (q .per_volume_gigabytes , q2 .per_volume_gigabytes )
6360 q2 .get ()
@@ -66,7 +63,6 @@ def test_refresh_quota(self):
6663 self .assertEqual (q .gigabytes , q2 .gigabytes )
6764 self .assertEqual (q .backups , q2 .backups )
6865 self .assertEqual (q .backup_gigabytes , q2 .backup_gigabytes )
69- self .assertEqual (q .consistencygroups , q2 .consistencygroups )
7066 self .assertEqual (q .per_volume_gigabytes , q2 .per_volume_gigabytes )
7167 self ._assert_request_id (q )
7268 self ._assert_request_id (q2 )
0 commit comments