0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00

Make test-sync-fileread pass even when git cr/lf conversion is enabled

This commit is contained in:
Bert Belder 2011-08-10 04:30:31 +02:00
parent 764dfbb1bf
commit 27ef0b0903
2 changed files with 2 additions and 1 deletions

1
test/fixtures/x.bin vendored Normal file
View File

@ -0,0 +1 @@
xyz

View File

@ -24,6 +24,6 @@ var assert = require('assert');
var path = require('path');
var fs = require('fs');
var fixture = path.join(__dirname, '../fixtures/x.txt');
var fixture = path.join(__dirname, '../fixtures/x.bin');
assert.equal('xyz\n', fs.readFileSync(fixture));