diff --git a/cmd/collector/app/zipkin/http_handler_test.go b/cmd/collector/app/zipkin/http_handler_test.go index b0bf79bae4d..ec90a0e9cb0 100644 --- a/cmd/collector/app/zipkin/http_handler_test.go +++ b/cmd/collector/app/zipkin/http_handler_test.go @@ -156,12 +156,12 @@ func TestJsonFormat(t *testing.T) { }, { payload: createSpan("bar", "", "1", "1", 156, 15145, false, annoJSON, binAnnoJSON), - expected: "Unable to process request body: strconv.ParseUint: parsing \"\": invalid syntax\n", + expected: "Unable to process request body: strconv.ParseUint: parsing "": invalid syntax\n", statusCode: http.StatusBadRequest, }, { payload: createSpan("bar", "ZTA", "1", "1", 156, 15145, false, "", ""), - expected: "Unable to process request body: strconv.ParseUint: parsing \"ZTA\": invalid syntax\n", + expected: "Unable to process request body: strconv.ParseUint: parsing "ZTA": invalid syntax\n", statusCode: http.StatusBadRequest, }, {