diff --git a/api/species_test.go b/api/species_test.go index 5d1bf87..407a952 100644 --- a/api/species_test.go +++ b/api/species_test.go @@ -20,15 +20,15 @@ func TestSpecies_Get(t *testing.T) { return want, nil } - _, err := apiClient.Species.Get(want.Id) + got, err := apiClient.Species.Get(want.Id) if err != nil { t.Fatal(err) } - // if !calledGet { - // t.Error("!calledGet") - // } - // if !normalizeDeepEqual(want, got) { - // t.Errorf("got species %+v but wanted species %+v", got, want) - // } + if !calledGet { + t.Error("!calledGet") + } + if !normalizeDeepEqual(want, got) { + t.Errorf("got species %+v but wanted species %+v", got, want) + } }