Skip to content

Commit f486b10

Browse files
committed
lint fixes
1 parent e42098c commit f486b10

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/error-handling.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ describe('Error Handling', function () {
4545
})
4646

4747
it('should throw argument type error if limits is not a plain object', function () {
48-
invalidPlainObj.forEach(option=>{
48+
invalidPlainObj.forEach(option => {
4949
assert.throws(
5050
() => multer({ limits: option }),
5151
(err) => {
@@ -57,7 +57,7 @@ describe('Error Handling', function () {
5757
})
5858

5959
it('should throw type error if options is not a plain object', function () {
60-
invalidPlainObj.forEach(option=>{
60+
invalidPlainObj.forEach(option => {
6161
assert.throws(
6262
() => multer(option),
6363
(err) => {

0 commit comments

Comments
 (0)