mirror of https://github.com/lukechilds/node.git
Browse Source
change equal to strictEqual and var to const PR-URL: https://github.com/nodejs/node/pull/9941 Reviewed-By: Prince John Wesley <princejohnwesley@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>v4.x
Jason Wohlgemuth
8 years ago
committed by
Myles Borins
1 changed files with 6 additions and 6 deletions
@ -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'); |
|||
|
Loading…
Reference in new issue