text edit

This commit is contained in:
Erik Winter 2021-03-29 08:30:20 +02:00
parent 4d7958f8de
commit b313767026
1 changed files with 4 additions and 4 deletions

View File

@ -140,11 +140,11 @@ mockServer := NewMockServer(nil, MockServerProcedure{
URI: "/path", URI: "/path",
HTTPMethod: http.MethodGet, HTTPMethod: http.MethodGet,
Response: MockResponse{ Response: MockResponse{
StatusCode: http.StatusOK, StatusCode: http.StatusOK,
Body: []byte(`First page`), Body: []byte(`First page`),
},
}, },
}, // define more if needed
// define more if needed
) )
---- ----