Browse Source

test: use proper findjsobjects output format

Closes #6329
v0.10.21-release
Dave Pacheco 11 years ago
committed by Timothy J Fontaine
parent
commit
720675e7db
  1. 2
      test/pummel/test-postmortem-findjsobjects.js

2
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)

Loading…
Cancel
Save