Skip to content

Commit 967949d

Browse files
committed
standard
1 parent 5a0fd33 commit 967949d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/testFile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ function testFile (filePath, depth) {
1010
// Inspect depth is optional
1111
var basename = path.basename(filePath)
1212
function test (t) {
13-
fs.readFile(filePath, {encoding: 'utf8'}, function (err, data) {
13+
fs.readFile(filePath, { encoding: 'utf8' }, function (err, data) {
1414
t.error(err, 'read ' + basename + ' file without error ')
1515

1616
var formatted
@@ -27,7 +27,7 @@ function testFile (filePath, depth) {
2727
t.equal(result.warningCount, 0, basename + ' warning free after formatting')
2828
if (result.errorCount || result.warningCount !== 0) {
2929
// If there is an issue, print the details
30-
console.log(inspect(result, {depth: depth || null}))
30+
console.log(inspect(result, { depth: depth || null }))
3131
}
3232
t.end()
3333
})

0 commit comments

Comments
 (0)