summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Pacheco <dap@joyent.com>2013-10-10 09:41:59 -0700
committerTimothy J Fontaine <tjfontaine@gmail.com>2013-10-10 15:45:25 -0700
commit720675e7dbec2d3aabb16f316747a0517845bd17 (patch)
tree55c211369b50bf37451f0d3beeba6cdf5351e11d
parentff1efdd6eea23499797dd1b35c79cbdcd513fd09 (diff)
downloadnode-new-720675e7dbec2d3aabb16f316747a0517845bd17.tar.gz
test: use proper findjsobjects output format
Closes #6329
-rw-r--r--test/pummel/test-postmortem-findjsobjects.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/pummel/test-postmortem-findjsobjects.js b/test/pummel/test-postmortem-findjsobjects.js
index 568e2ff059..292b060933 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)