Removed commented portion
This commit is contained in:
parent
830a8805c9
commit
ed2ba26654
1 changed files with 7 additions and 7 deletions
|
@ -20,15 +20,15 @@ func TestSpecies_Get(t *testing.T) {
|
||||||
return want, nil
|
return want, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
_, err := apiClient.Species.Get(want.Id)
|
got, err := apiClient.Species.Get(want.Id)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
// if !calledGet {
|
if !calledGet {
|
||||||
// t.Error("!calledGet")
|
t.Error("!calledGet")
|
||||||
// }
|
}
|
||||||
// if !normalizeDeepEqual(want, got) {
|
if !normalizeDeepEqual(want, got) {
|
||||||
// t.Errorf("got species %+v but wanted species %+v", got, want)
|
t.Errorf("got species %+v but wanted species %+v", got, want)
|
||||||
// }
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue