Skip to content

Commit 3bee578

Browse files
committed
Fixed linting
1 parent 61f8bf2 commit 3bee578

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

test/format-stream-spec.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ describe('FormatStream', function() {
2020

2121
it('should format objects', function(done) {
2222
var stream = new FormatStream({ objectMode: true });
23-
//stream.setEncoding('utf8');
23+
// stream.setEncoding('utf8');
2424
var source = {
2525
results: [
2626
{
@@ -50,8 +50,6 @@ describe('FormatStream', function() {
5050
]
5151
};
5252
stream.on('data', function(actual) {
53-
console.log(JSON.stringify(actual, null, 2))
54-
console.log(JSON.stringify(expected, null, 2))
5553
assert.deepEqual(actual, expected);
5654
done();
5755
});

0 commit comments

Comments
 (0)