From d116f249db91c8c2ab233af7d93ce894c285e197 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre-Yves=20G=C3=A9rardy?= Date: Wed, 29 Nov 2017 17:08:46 +0100 Subject: [PATCH] lint: fix quotes --- ospec/tests/test-ospec.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ospec/tests/test-ospec.js b/ospec/tests/test-ospec.js index a1894419..e837049d 100644 --- a/ospec/tests/test-ospec.js +++ b/ospec/tests/test-ospec.js @@ -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) } })