8000 fixed up some dodgy tabbing · LikeABossProgrammer/log4js-node@cbc1dd3 · GitHub
[go: up one dir, main page]

Skip to content

Commit cbc1dd3

Browse files
author
Gareth Jones
committed
fixed up some dodgy tabbing
1 parent a6fb26e commit cbc1dd3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/rollingFileStream-test.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ vows.describe('RollingFileStream').addBatch({
1919
return new RollingFileStream("test-rolling-file-stream", 1024, 5);
2020
},
2121
'should take a filename, file size in bytes, number of backups as arguments and return a FileWriteStream': function(stream) {
22-
assert.instanceOf(stream, fs.FileWriteStream);
23-
assert.equal(stream.filename, "test-rolling-file-stream");
24-
assert.equal(stream.size, 1024);
25-
assert.equal(stream.backups, 5);
26-
},
22+
assert.instanceOf(stream, fs.FileWriteStream);
23+
assert.equal(stream.filename, "test-rolling-file-stream");
24+
assert.equal(stream.size, 1024);
25+
assert.equal(stream.backups, 5);
26+
},
2727
'with default settings for the underlying stream': function(stream) {
2828
assert.equal(stream.mode, 420);
2929
assert.equal(stream.flags, 'a');

0 commit comments

Comments
 (0)
0