Removed commented portion

This commit is contained in:
Matthew Dillon 2014-10-15 14:11:17 -08:00
parent 830a8805c9
commit ed2ba26654

View file

@ -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)
// } }
} }