Remove extraneous fmt.Print statements
parent
d65228c04c
commit
8e0dca7383
|
@ -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)
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue