Remove extraneous fmt.Print statements

pull/10616/head
Jared Scheib 2018-03-23 15:03:01 -07:00
parent d65228c04c
commit 8e0dca7383
2 changed files with 0 additions and 3 deletions

View File

@ -147,8 +147,6 @@ func (s *Service) Mappings(w http.ResponseWriter, r *http.Request) {
return
}
fmt.Printf("mappings: %#v\n", mappings)
res := newMappingsResponse(mappings)
encodeJSON(w, http.StatusOK, res, s.Logger)

View File

@ -882,7 +882,6 @@ func TestService_Me(t *testing.T) {
SuperAdminProviderGroups: tt.fields.SuperAdminProviderGroups,
}
fmt.Println(tt.name)
s.Me(tt.args.w, tt.args.r)
resp := tt.args.w.Result()