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

We'll solve this problem with a .gitattributes file.
This reverts commit 27ef0b0903.
This commit is contained in:
Bert Belder 2011-08-10 19:54:36 +02:00
parent 942f8b5afb
commit c96ef84427
2 changed files with 1 additions and 2 deletions

1
test/fixtures/x.bin vendored
View File

@ -1 +0,0 @@
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.bin');
var fixture = path.join(__dirname, '../fixtures/x.txt');
assert.equal('xyz\n', fs.readFileSync(fixture));