Skip to content

Commit

Permalink
[clean] Fix linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
adamreisnz committed Apr 25, 2020
1 parent cd31763 commit 2545bc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/replace-in-file.spec.js
Expand Up @@ -3,7 +3,7 @@
/**
* Dependencies
*/
import replace, {sync, replaceInFile, replaceInFileSync} from './replace-in-file'
import replace, {sync, replaceInFile, replaceInFileSync} from './replace-in-file';
const fs = require('fs');
const writeFile = Promise.promisify(fs.writeFile);
const deleteFile = Promise.promisify(fs.unlink);
Expand Down Expand Up @@ -1168,5 +1168,5 @@ describe('Replace in file', () => {
expect(replace.sync).to.equal(replaceInFileSync);
expect(replace.replaceInFileSync).to.equal(replaceInFileSync);
});
})
});
});

0 comments on commit 2545bc4

Please sign in to comment.