Skip to content

Commit

Permalink
[test] Temporary: prevent test failure from deprecation warning in core.
Browse files Browse the repository at this point in the history
  • Loading branch information
AvianFlu committed Jun 26, 2012
1 parent 1e8d7ca commit 665e1ec
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/core/tail-stopall-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ vows.describe('forever/core/tail').addBatch({
assert.isArray(proc.logs);
assert.isTrue(!!proc.logs.length);
assert.isTrue(proc.logs.length > 10);
// Temporary hack, remove after warnings are gone.
proc.logs = proc.logs.slice(1);
proc.logs.forEach(function (line) {
assert.match(line, /^Logging at/);
});
Expand Down

0 comments on commit 665e1ec

Please sign in to comment.