Skip to content

Commit

Permalink
Remove unused done param (#749)
Browse files Browse the repository at this point in the history
Not sure why linter didn't catch this
  • Loading branch information
RyanZim committed Feb 3, 2020
1 parent 2e4fcae commit a6b1a44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/util/__tests__/stat.test.js
Expand Up @@ -21,7 +21,7 @@ describe('util/stat', () => {

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

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

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

0 comments on commit a6b1a44

Please sign in to comment.