Skip to content

Commit

Permalink
Fix inconsistent use of space.
Browse files Browse the repository at this point in the history
  • Loading branch information
legander committed Jul 9, 2019
1 parent 06dbe4c commit 82b0c6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
"husky": {
"hooks": {
"pre-commit": "npm run lint-js",
"pre-push": "npm-run-all test bundle"
"pre-push": "npm-run-all lint-js test bundle"
}
}
}
2 changes: 1 addition & 1 deletion test/unit/render/logic.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ test.serial('nonempty', t => {
t.true(variableSpace.calledOnce)
t.true(flow.calledOnce)
t.true(block.calledOnce)
t.deepEqual(block.firstCall.args[0], [ `// Flow`, `sleep(1);`])
t.deepEqual(block.firstCall.args[0], [`// Flow`, `sleep(1);`])
})

0 comments on commit 82b0c6e

Please sign in to comment.