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
fmt.Fprint(w, `{"message":"Job queued to rename organization. It may take a few minutes to complete.","url":"https://<hostname>/api/v3/organizations/1"}`)
t.Errorf("Admin.RenameOrg returned error: %v", err)
73
+
}
74
+
75
+
want:=&RenameOrgResponse{Message: String("Job queued to rename organization. It may take a few minutes to complete."), URL: String("https://<hostname>/api/v3/organizations/1")}
76
+
if!reflect.DeepEqual(resp, want) {
77
+
t.Errorf("Admin.RenameOrg returned %+v, want %+v", resp, want)
fmt.Fprint(w, `{"message":"Job queued to rename organization. It may take a few minutes to complete.","url":"https://<hostname>/api/v3/organizations/1"}`)
t.Errorf("Admin.RenameOrg returned error: %v", err)
101
+
}
102
+
103
+
want:=&RenameOrgResponse{Message: String("Job queued to rename organization. It may take a few minutes to complete."), URL: String("https://<hostname>/api/v3/organizations/1")}
104
+
if!reflect.DeepEqual(resp, want) {
105
+
t.Errorf("Admin.RenameOrg returned %+v, want %+v", resp, want)
0 commit comments