Skip to content

Commit 6c5edca

Browse files
committed
Fixes #213.
1 parent fcddd4a commit 6c5edca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

nodejs/scripts/tests/fs.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module.exports =
1515
test.notEqual(null, dataString);
1616
// console.log('Read content:');
1717
// console.log(dataString);
18-
test.equal(30, dataString.length);
18+
test.equal(28, dataString.length);
1919
}
2020
test.ifError(err);
2121
test.done();

nodejs/scripts/tests/request.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ module.exports =
3131
var responseText = transport.responseText;
3232
console.log('CLIENT: Response text:');
3333
console.log(responseText);
34-
test.equal(30, responseText.length);
34+
test.equal(28, responseText.length);
3535
test.done();
3636
});
3737
},

0 commit comments

Comments
 (0)