Skip to content

Commit

Permalink
test: test: refactor test-sync-fileread
Browse files Browse the repository at this point in the history
change equal to strictEqual and var to const

PR-URL: #9941
Reviewed-By: Prince John Wesley <princejohnwesley@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Rich Trott <rtrott@gmail.com>
  • Loading branch information
jhwohlgemuth authored and targos committed Dec 26, 2016
1 parent 420b3b8 commit b37fce9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/parallel/test-sync-fileread.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
'use strict';
var common = require('../common');
var assert = require('assert');
var path = require('path');
var fs = require('fs');
const common = require('../common');
const assert = require('assert');
const path = require('path');
const fs = require('fs');

var fixture = path.join(common.fixturesDir, 'x.txt');
const fixture = path.join(common.fixturesDir, 'x.txt');

assert.equal('xyz\n', fs.readFileSync(fixture));
assert.strictEqual(fs.readFileSync(fixture).toString(), 'xyz\n');

0 comments on commit b37fce9

Please sign in to comment.