This commit is contained in:
Amber Brown 2021-08-18 09:47:26 +10:00
Родитель 136fbbe5bc
Коммит 0a236a3dae
3 изменённых файлов: 4 добавлений и 6 удалений

Просмотреть файл

@ -107,7 +107,10 @@ func run(ctx context.Context, l *logrus.Entry) error {
func resp(bytes []byte) func(http.ResponseWriter, *http.Request) {
e := func(w http.ResponseWriter, r *http.Request) {
var resp interface{}
json.Unmarshal(bytes, &resp)
err := json.Unmarshal(bytes, &resp)
if err != nil {
return
}
b, err := json.MarshalIndent(resp, "", " ")
if err != nil {

Просмотреть файл

@ -50,7 +50,6 @@ func (p *testPortal) DumpLogs(t *testing.T) {
}
func (p *testPortal) Run(ctx context.Context) error {
err := p.p.setupRouter()
if err != nil {
return err

Просмотреть файл

@ -18,7 +18,6 @@ import (
)
func TestInfo(t *testing.T) {
ctx := context.Background()
controller := gomock.NewController(t)
@ -74,7 +73,6 @@ func TestInfo(t *testing.T) {
},
},
} {
resp, err := p.Request("GET", "/api/info", tt.authenticated, tt.elevated)
if err != nil {
p.DumpLogs(t)
@ -105,7 +103,5 @@ func TestInfo(t *testing.T) {
for _, l := range deep.Equal(readResp, tt.expectedResponse) {
t.Error(l)
}
}
}