Skip to content

Commit

Permalink
Fix systemtest - error wrapping
Browse files Browse the repository at this point in the history
  • Loading branch information
simitt committed Dec 19, 2023
1 parent 2cde661 commit 7b0ae73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion systemtest/rum_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ func TestRUMAllowServiceNames(t *testing.T) {

respBody, _ := io.ReadAll(resp.Body)
assert.Equal(t, http.StatusForbidden, resp.StatusCode, string(respBody))
assert.Equal(t, `{"accepted":0,"errors":[{"message":"unauthorized: anonymous access not permitted for service \"disallowed\""}]}`+"\n", string(respBody))
assert.Equal(t, `{"accepted":0,"errors":[{"message":"cannot handle stream: cannot process batch: unauthorized: anonymous access not permitted for service \"disallowed\""}]}`+"\n", string(respBody))
}

func TestRUMRateLimit(t *testing.T) {
Expand Down

0 comments on commit 7b0ae73

Please sign in to comment.