@@ -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 )
@@ -96,7 +96,7 @@ def linode_for_vpu_tests(test_linode_client, e2e_test_firewall):
9696 linode_instance , password = client .linode .instance_create (
9797 "g1-accelerated-netint-vpu-t1u1-s" ,
9898 region ,
99- image = "linode/debian10 " ,
99+ image = "linode/debian12 " ,
100100 label = label ,
101101 firewall = e2e_test_firewall ,
102102 )
@@ -167,7 +167,7 @@ def create_linode_for_long_running_tests(test_linode_client, e2e_test_firewall):
167167 linode_instance , password = client .linode .instance_create (
168168 "g6-nanode-1" ,
169169 region ,
170- image = "linode/debian10 " ,
170+ image = "linode/debian12 " ,
171171 label = label + "_long_tests" ,
172172 firewall = e2e_test_firewall ,
173173 )
@@ -241,22 +241,22 @@ def test_linode_rebuild(test_linode_client):
241241 label = get_test_label () + "_rebuild"
242242
243243 linode , password = client .linode .instance_create (
244- "g6-nanode-1" , region , image = "linode/debian10 " , label = label
244+ "g6-nanode-1" , region , image = "linode/debian12 " , label = label
245245 )
246246
247247 wait_for_condition (10 , 100 , get_status , linode , "running" )
248248
249249 retry_sending_request (
250250 3 ,
251251 linode .rebuild ,
252- "linode/debian10 " ,
252+ "linode/debian12 " ,
253253 disk_encryption = InstanceDiskEncryptionType .disabled ,
254254 )
255255
256256 wait_for_condition (10 , 100 , get_status , linode , "rebuilding" )
257257
258258 assert linode .status == "rebuilding"
259- assert linode .image .id == "linode/debian10 "
259+ assert linode .image .id == "linode/debian12 "
260260
261261 assert linode .disk_encryption == InstanceDiskEncryptionType .disabled
262262
@@ -299,7 +299,7 @@ def test_delete_linode(test_linode_client):
299299 linode_instance , password = client .linode .instance_create (
300300 "g6-nanode-1" ,
301301 region ,
302- image = "linode/debian10 " ,
302+ image = "linode/debian12 " ,
303303 label = label + "_linode" ,
304304 )
305305
0 commit comments