Skip to content

Commit

Permalink
style: remove extra line break
Browse files Browse the repository at this point in the history
  • Loading branch information
alan-agius4 authored Feb 5, 2020
1 parent 659eb6d commit 2e6f2ea
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions test/spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ const {main, parseArgs} = require('../src/main');
const inFile = path.normalize('./data/some/index.html');

function read(file) {
if (path.normalize(file) === inFile)
return `<html><head></head><body></body></html>`;
if (path.normalize(file) === inFile) return `<html><head></head><body></body></html>`;
throw new Error(`no content for ${file}`);
}

Expand Down

0 comments on commit 2e6f2ea

Please sign in to comment.