File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
test/integration/models/linode Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -542,7 +542,7 @@ def test_get_linode_types_overrides(test_linode_client):
542
542
def test_save_linode_noforce (test_linode_client , create_linode ):
543
543
linode = create_linode
544
544
old_label = linode .label
545
- linode .label = "updated_no_force_label "
545
+ linode .label = old_label + "updated_no_force "
546
546
linode .save (force = False )
547
547
548
548
linode = test_linode_client .load (Instance , linode .id )
@@ -553,8 +553,8 @@ def test_save_linode_noforce(test_linode_client, create_linode):
553
553
def test_save_linode_force (test_linode_client , create_linode ):
554
554
linode = create_linode
555
555
old_label = linode .label
556
- linode .label = "updated_force_label "
557
- linode .save (force = False )
556
+ linode .label = old_label + "updated_force "
557
+ linode .save (force = True )
558
558
559
559
linode = test_linode_client .load (Instance , linode .id )
560
560
You can’t perform that action at this time.
0 commit comments