@@ -358,14 +358,14 @@ func TestMicroVMExecution(t *testing.T) {
358
358
t .Run ("SetMetadata" , func (t * testing.T ) { testSetMetadata (ctx , t , m ) })
359
359
t .Run ("UpdateMetadata" , func (t * testing.T ) { testUpdateMetadata (ctx , t , m ) })
360
360
t .Run ("GetMetadata" , func (t * testing.T ) { testGetMetadata (ctx , t , m ) }) // Should be after testSetMetadata and testUpdateMetadata
361
- t .Run ("TestUpdateGuestDrive" , func (t * testing.T ) { testUpdateGuestDrive (ctx , t , m ) })
362
- t .Run ("TestUpdateGuestNetworkInterface" , func (t * testing.T ) { testUpdateGuestNetworkInterface (ctx , t , m ) })
363
361
t .Run ("TestStartInstance" , func (t * testing.T ) { testStartInstance (ctx , t , m ) })
364
362
365
363
// Let the VMM start and stabilize...
366
364
timer := time .NewTimer (5 * time .Second )
367
365
select {
368
366
case <- timer .C :
367
+ t .Run ("TestUpdateGuestDrive" , func (t * testing.T ) { testUpdateGuestDrive (ctx , t , m ) })
368
+ t .Run ("TestUpdateGuestNetworkInterface" , func (t * testing.T ) { testUpdateGuestNetworkInterface (ctx , t , m ) })
369
369
t .Run ("TestShutdown" , func (t * testing.T ) { testShutdown (ctx , t , m ) })
370
370
case <- exitchannel :
371
371
// if we've already exited, there's no use waiting for the timer
0 commit comments