From ed2ba266544498e39cd0fb241b1e555cfaf8e8a2 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Wed, 15 Oct 2014 14:11:17 -0800 Subject: [PATCH] Removed commented portion --- api/species_test.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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) + } }