remove code that will not be executed

Signed-off-by: sellskin <[email protected]>
This commit is contained in:
sellskin
2024-08-07 14:31:49 +00:00
committed by Chung-Ting Huang
parent 9f0002db40
commit 30c435fee6
-2
View File
@@ -52,13 +52,11 @@ func testRequest(t *testing.T, ts *httptest.Server, method, path string, body io
req, err := http.NewRequest(method, ts.URL+path, body)
if err != nil {
t.Fatal(err)
return nil, nil
}
resp, err := ts.Client().Do(req)
if err != nil {
t.Fatal(err)
return nil, nil
}
var claims managementErrorResponse
err = json.NewDecoder(resp.Body).Decode(&claims)