You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// We expect this to fail, but we're testing the API call itself
305
+
// In a real environment with valid VIFs, you would check for success instead
306
+
iferr==nil {
307
+
t.Logf("Warning: Expected error when attaching non-existent VIF, but got success. This might indicate the test environment has a VIF with ID %s", fakeVifID)
308
+
}
309
+
310
+
// Try to detach a VIF (this will likely fail with a 404 Not Found)
// Again, we expect this to fail in most test environments
314
+
iferr==nil {
315
+
t.Logf("Warning: Expected error when detaching non-existent VIF, but got success. This might indicate the test environment has a VIF with ID %s", fakeVifID)
316
+
}
317
+
318
+
// List VIFs again to confirm state hasn't changed
0 commit comments