Skip to content
This repository was archived by the owner on Apr 3, 2024. It is now read-only.

Commit f8815fc

Browse files
authored
fix: remove unused second parameter (#1161)
1 parent 3884008 commit f8815fc

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/test-fat-arrow.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ describe(__filename, () => {
101101
done();
102102
});
103103
});
104-
process.nextTick(foo.bind(null, 'test'));
104+
process.nextTick(foo.bind(null));
105105
});
106106
});
107107
it('Should process the argument value change of the fat arrow', done => {
@@ -126,7 +126,7 @@ describe(__filename, () => {
126126
done();
127127
});
128128
});
129-
process.nextTick(foo.bind(null, 'test'));
129+
process.nextTick(foo.bind(null));
130130
});
131131
});
132132
});

0 commit comments

Comments
 (0)