@@ -79,6 +79,7 @@ def test_backup_create(self):
7979 "--description" , self .new_backup .description ,
8080 "--container" , self .new_backup .container ,
8181 "--force" ,
82+ "--incremental" ,
8283 "--snapshot" , self .new_backup .snapshot_id ,
8384 self .new_backup .volume_id ,
8485 ]
@@ -87,6 +88,7 @@ def test_backup_create(self):
8788 ("description" , self .new_backup .description ),
8889 ("container" , self .new_backup .container ),
8990 ("force" , True ),
91+ ("incremental" , True ),
9092 ("snapshot" , self .new_backup .snapshot_id ),
9193 ("volume" , self .new_backup .volume_id ),
9294 ]
@@ -100,6 +102,7 @@ def test_backup_create(self):
100102 name = self .new_backup .name ,
101103 description = self .new_backup .description ,
102104 force = True ,
105+ incremental = True ,
103106 snapshot_id = self .new_backup .snapshot_id ,
104107 )
105108 self .assertEqual (self .columns , columns )
@@ -126,6 +129,7 @@ def test_backup_create_without_name(self):
126129 name = None ,
127130 description = self .new_backup .description ,
128131 force = False ,
132+ incremental = False ,
129133 snapshot_id = None ,
130134 )
131135 self .assertEqual (self .columns , columns )
0 commit comments