Skip to content

Commit

Permalink
fix(http-multipart-body-parser): resolve test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
naorpeled committed Jun 6, 2024
1 parent c709003 commit e1f5500
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/http-multipart-body-parser/__tests__/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ test('It should handle invalid form data (undefined) as an UnprocessableEntity',
t.is(e.message, 'Invalid or malformed multipart/form-data was provided')
t.is(
e.cause.data.message,
'The "chunk" argument must be of type string or an instance of Buffer or Uint8Array. Received undefined'
'The "chunk" argument must be of type string or an instance of Buffer, TypedArray, or DataView. Received undefined'
)
}
})
Expand Down

0 comments on commit e1f5500

Please sign in to comment.