Skip to content

Commit

Permalink
Strict equals for render tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyrone committed Feb 4, 2017
1 parent e158c3c commit 88ca295
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/util/render.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,6 @@ describe('render', () => {
const rendered = render('{{value}}')({
value: 'http://'
}, true)
assert.equal(rendered, 'http://', true)
assert.strictEqual(rendered, 'http://', true)
})
})

0 comments on commit 88ca295

Please sign in to comment.