diff --git a/test/mocha/e2e/quote.test.ts b/test/mocha/e2e/quote.test.ts index c2766c00f2..4fcc069461 100644 --- a/test/mocha/e2e/quote.test.ts +++ b/test/mocha/e2e/quote.test.ts @@ -1496,7 +1496,10 @@ describe('quote', function () { const queryParams = qs.stringify(quoteReq) const response: AxiosResponse = await axios.get(`${API}?${queryParams}`, { - headers: HEADERS_2_0, + headers: { + ...HEADERS_2_0, + 'x-request-source': 'e2e-test', + }, }) const { data: { quoteDecimals, quoteGasAdjustedDecimals, methodParameters, routeString },