Skip to content

Commit

Permalink
forward test passes, just had a trailing newline
Browse files Browse the repository at this point in the history
  • Loading branch information
James Halliday committed Sep 29, 2011
1 parent f71f1ff commit 8205661
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/forward.js
Expand Up @@ -47,7 +47,7 @@ test('forward', function (t) {
});

res.on('end', function () {
t.equal(s, 'servers[0]');
t.equal(s.trim(), 'servers[0]');
s0.close();
done();
});
Expand All @@ -65,7 +65,7 @@ test('forward', function (t) {
});

res.on('end', function () {
t.equal(s, 'servers[1]');
t.equal(s.trim(), 'servers[1]');
s1.close();
done();
});
Expand Down

0 comments on commit 8205661

Please sign in to comment.