Skip to content

Commit 9172365

Browse files
committed
typo
1 parent 6f7e2b6 commit 9172365

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/response.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ describe('inProcessResponseToLambdaResponse', () => {
9595
expect(res.isBase64Encoded).toEqual(true);
9696
})
9797

98-
it('has basee64 body if isUTF8 is set to false and content type starts with text/ and the content is not UTF8', () => {
98+
it('has base64 body if isUTF8 is set to false and content type starts with text/ and the content is not UTF8', () => {
9999
const res = inProcessResponseToLambdaResponse(generateMockResponse({body: Buffer.from([1,2,3,4,5,6]), isUTF8: false, contentType: 'binary/octet-stream'}), false, false);
100100
expect(res.isBase64Encoded).toEqual(true);
101101
expect(res.body).toEqual('AQIDBAUG');

0 commit comments

Comments
 (0)