diff --git a/internal/client/route_list_test.go b/internal/client/route_list_test.go index 64ff441..c08e9fd 100644 --- a/internal/client/route_list_test.go +++ b/internal/client/route_list_test.go @@ -19,7 +19,6 @@ func TestListRoutesEmpty(t *testing.T) { defer gock.Off() gock.New(host). Get("/routes"). - MatchType("json"). Reply(http.StatusOK) err := ListRoutes(host, nil) @@ -36,7 +35,6 @@ func TestListRoutesSome(t *testing.T) { defer gock.Off() gock.New(host). Get("/routes"). - MatchType("json"). Reply(http.StatusOK). BodyString(want)