File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -50,12 +50,12 @@ func TestMain(m *testing.M) {
50
50
}
51
51
52
52
func TestNonExisting (t * testing.T ) {
53
- err := client .DeleteInstanceID (context .Background (), "non-existing " )
53
+ err := client .DeleteInstanceID (context .Background (), "dnon-existY " )
54
54
if err == nil {
55
- t .Errorf ("DeleteInstanceID(non-existing ) = nil; want error" )
55
+ t .Errorf ("DeleteInstanceID(\" dnon-existY \" ) = nil; want error" )
56
56
}
57
- want := `instance id "non-existing ": failed to find the instance id`
57
+ want := `instance id "dnon-existY ": failed to find the instance id`
58
58
if err .Error () != want {
59
- t .Errorf ("DeleteInstanceID(non-existing ) = %v; want = %v" , err , want )
59
+ t .Errorf ("DeleteInstanceID(\" dnon-existY \" ) = %v; want = %v" , err , want )
60
60
}
61
61
}
You can’t perform that action at this time.
0 commit comments