зеркало из https://github.com/Azure/ARO-RP.git
Minor code nit cleanups
This commit is contained in:
Родитель
136fbbe5bc
Коммит
0a236a3dae
|
@ -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)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче