lint: fix quotes
This commit is contained in:
parent
1be2c41981
commit
d116f249db
1 changed files with 4 additions and 4 deletions
|
|
@ -183,13 +183,13 @@ o.spec("ospec", function() {
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
o.spec('stack trace cleaner', function() {
|
o.spec("stack trace cleaner", function() {
|
||||||
o('handles line breaks', function() {
|
o("handles line breaks", function() {
|
||||||
try {
|
try {
|
||||||
throw new Error('line\nbreak')
|
throw new Error("line\nbreak")
|
||||||
} catch(error) {
|
} catch(error) {
|
||||||
var trace = o.cleanStackTrace(error.stack)
|
var trace = o.cleanStackTrace(error.stack)
|
||||||
o(trace).notEquals('break')
|
o(trace).notEquals("break")
|
||||||
o(trace.includes("test-ospec.js")).equals(true)
|
o(trace.includes("test-ospec.js")).equals(true)
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue