Skip to content

Commit

Permalink
double quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
benmccann committed Jul 29, 2021
1 parent 980c845 commit ec2ac8f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cli/run/batchWarnings.ts
Expand Up @@ -239,9 +239,9 @@ const deferredHandlers: {
for (const warning of warnings) {
stderr(
warning.names +
" imported from external module '" +
' imported from external module "' +
warning.source +
"' but never used in " +
'" but never used in ' +
printQuotedStringList((warning.sources as string[]).map(id => relativeId(id)))
);
}
Expand Down
2 changes: 1 addition & 1 deletion test/cli/samples/warn-import-export/_config.js
Expand Up @@ -16,7 +16,7 @@ module.exports = {
assertIncludes(
stderr,
'(!) Unused external imports\n' +
`default imported from external module 'external' but never used in "main.js"\n`
`default imported from external module "external" but never used in "main.js"\n`
);
assertIncludes(
stderr,
Expand Down

0 comments on commit ec2ac8f

Please sign in to comment.