Skip to content

Commit a6b1a44

Browse files
authored
Remove unused done param (#749)
Not sure why linter didn't catch this
1 parent 2e4fcae commit a6b1a44

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/util/__tests__/stat.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ describe('util/stat', () => {
2121

2222
afterEach(done => fs.remove(TEST_DIR, done))
2323

24-
describe('should use stats with bigint type for node versions >= 10.5.0 and number type for older versions', done => {
24+
describe('should use stats with bigint type for node versions >= 10.5.0 and number type for older versions', () => {
2525
it('stat.checkPaths()', () => {
2626
const nodeVersion = process.versions.node
2727
const src = path.join(TEST_DIR, 'src')
@@ -54,7 +54,7 @@ describe('util/stat', () => {
5454
})
5555
})
5656

57-
describe('should stop at src or root path and not throw max call stack size error', done => {
57+
describe('should stop at src or root path and not throw max call stack size error', () => {
5858
it('stat.checkParentPaths()', () => {
5959
const src = path.join(TEST_DIR, 'src')
6060
let dest = path.join(TEST_DIR, 'dest')

0 commit comments

Comments
 (0)