From 720675e7dbec2d3aabb16f316747a0517845bd17 Mon Sep 17 00:00:00 2001 From: Dave Pacheco Date: Thu, 10 Oct 2013 09:41:59 -0700 Subject: [PATCH] test: use proper findjsobjects output format Closes #6329 --- test/pummel/test-postmortem-findjsobjects.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/pummel/test-postmortem-findjsobjects.js b/test/pummel/test-postmortem-findjsobjects.js index 568e2ff..292b060 100644 --- a/test/pummel/test-postmortem-findjsobjects.js +++ b/test/pummel/test-postmortem-findjsobjects.js @@ -67,7 +67,7 @@ gcore.on('exit', function (code) { } var lines = output.split('\n'); - var found = 0, i, expected = 'OBEY: ' + obj.OBEY, nexpected = 2; + var found = 0, i, expected = 'OBEY: "' + obj.OBEY + '"', nexpected = 2; for (var i = 0; i < lines.length; i++) { if (lines[i].indexOf(expected) != -1) -- 2.7.4