Skip to content

Commit 1e6972b

Browse files
committed
Fixed a golint error in test file
1 parent a2e4909 commit 1e6972b

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

test/systemtests/aci_util_test.go

+1-5
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,7 @@ func aciHTTPGet(url string, jin, jout interface{}) error {
6464
return err
6565
}
6666

67-
if err := json.Unmarshal(response, jout); err != nil {
68-
return err
69-
}
70-
71-
return nil
67+
return json.Unmarshal(response, jout)
7268
}
7369

7470
// GetEPFromAPIC checks learning

0 commit comments

Comments
 (0)