fix OS-specific endline mucking test results (:-O not everyone uses linux?!?!)

This commit is contained in:
Issac Goldstand 2013-05-03 11:14:28 +03:00
parent 29b02921b6
commit 04de4ed8d3

View File

@ -89,7 +89,7 @@ vows.describe('../lib/appenders/dateFile').addBatch({
teardown: removeFile('date-file-test.log'),
'should load appender configuration from a json file': function(err, contents) {
assert.include(contents, 'this should be written to the file\n');
assert.include(contents, 'this should be written to the file' + require('os').EOL);
assert.equal(contents.indexOf('this should not be written to the file'), -1);
}
},