Skip to content

Commit

Permalink
Switch to single quotes with curly tick
Browse files Browse the repository at this point in the history
debugging diff

revert

revert preset

revert
  • Loading branch information
stramel authored and ljharb committed Oct 1, 2018
1 parent ae57c4a commit 516280d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/sanity.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ if (fs.existsSync(path.resolve('./PACKAGE.JSON'))) {
if (err && err.message.indexOf('match case') !== -1) {
console.log('test/fixtures/test-case-sensitive.jsx', 'Test passed: Expected case sensitive error was thrown');
} else {
throw new Error("Test failed: Expected case sensitive error wasn't thrown");
throw new Error('Test failed: Expected case sensitive error wasnt thrown');
}
});
} else {
Expand Down Expand Up @@ -108,7 +108,7 @@ transformFile('test/fixtures/test-import.jsx', {
}, (err2, requireResult) => {
if (err2) throw err2;
if (importResult.code !== requireResult.code) {
throw new Error("Test failed: Import and require tests don't match");
throw new Error('Test failed: Import and require tests dont match');
}
});
});
Expand Down

0 comments on commit 516280d

Please sign in to comment.