@@ -38,7 +38,7 @@ def linode_with_volume_firewall(test_linode_client):
3838 linode_instance , password = client .linode .instance_create (
3939 "g6-nanode-1" ,
4040 region ,
41- image = "linode/debian10 " ,
41+ image = "linode/debian12 " ,
4242 label = label + "_modlinode" ,
4343 )
4444
@@ -76,7 +76,7 @@ def linode_for_network_interface_tests(test_linode_client, e2e_test_firewall):
7676 linode_instance , password = client .linode .instance_create (
7777 "g6-nanode-1" ,
7878 region ,
79- image = "linode/debian10 " ,
79+ image = "linode/debian12 " ,
8080 label = label ,
8181 firewall = e2e_test_firewall ,
8282 )
@@ -147,7 +147,7 @@ def create_linode_for_long_running_tests(test_linode_client, e2e_test_firewall):
147147 linode_instance , password = client .linode .instance_create (
148148 "g6-nanode-1" ,
149149 region ,
150- image = "linode/debian10 " ,
150+ image = "linode/debian12 " ,
151151 label = label + "_long_tests" ,
152152 firewall = e2e_test_firewall ,
153153 )
@@ -214,22 +214,22 @@ def test_linode_rebuild(test_linode_client):
214214 label = get_test_label () + "_rebuild"
215215
216216 linode , password = client .linode .instance_create (
217- "g6-nanode-1" , region , image = "linode/debian10 " , label = label
217+ "g6-nanode-1" , region , image = "linode/debian12 " , label = label
218218 )
219219
220220 wait_for_condition (10 , 100 , get_status , linode , "running" )
221221
222222 retry_sending_request (
223223 3 ,
224224 linode .rebuild ,
225- "linode/debian10 " ,
225+ "linode/debian12 " ,
226226 disk_encryption = InstanceDiskEncryptionType .disabled ,
227227 )
228228
229229 wait_for_condition (10 , 100 , get_status , linode , "rebuilding" )
230230
231231 assert linode .status == "rebuilding"
232- assert linode .image .id == "linode/debian10 "
232+ assert linode .image .id == "linode/debian12 "
233233
234234 assert linode .disk_encryption == InstanceDiskEncryptionType .disabled
235235
@@ -272,7 +272,7 @@ def test_delete_linode(test_linode_client):
272272 linode_instance , password = client .linode .instance_create (
273273 "g6-nanode-1" ,
274274 region ,
275- image = "linode/debian10 " ,
275+ image = "linode/debian12 " ,
276276 label = label + "_linode" ,
277277 )
278278
0 commit comments