Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ReadAll (0.14 sec)

  1. cmd/object-handlers_test.go

    		if rec.Code != testCase.expectedRespStatus {
    			b, _ := io.ReadAll(rec.Body)
    			t.Fatalf("Test %d: Expected the response status to be `%d`, but instead found `%d`: %s", i, testCase.expectedRespStatus, rec.Code, string(b))
    		}
    		if testCase.expectedRespStatus != http.StatusOK {
    			b, err := io.ReadAll(rec.Body)
    			if err != nil {
    				t.Fatal(err)
    			}
    			var apiErr APIErrorResponse
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
Back to top