lint: fix quotes

This commit is contained in:
Pierre-Yves Gérardy 2017-11-29 17:08:46 +01:00
parent 1be2c41981
commit d116f249db

View file

@ -183,13 +183,13 @@ o.spec("ospec", function() {
})
})
o.spec('stack trace cleaner', function() {
o('handles line breaks', function() {
o.spec("stack trace cleaner", function() {
o("handles line breaks", function() {
try {
throw new Error('line\nbreak')
throw new Error("line\nbreak")
} catch(error) {
var trace = o.cleanStackTrace(error.stack)
o(trace).notEquals('break')
o(trace).notEquals("break")
o(trace.includes("test-ospec.js")).equals(true)
}
})