Skip to content

Commit 1eb7196

Browse files
committed
lint
1 parent dcbe6b2 commit 1eb7196

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/parallel/test-fs-stat.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,9 @@ fs.stat(__filename, common.mustCall(function(err, s) {
113113
'ctime', 'birthtime'
114114
];
115115
keys.forEach(function(k) {
116-
assert.ok(json[k] !== undefined && json[k] !== null, k + ' should not be null or undefined');
116+
assert.ok(
117+
json[k] !== undefined && json[k] !== null,
118+
k + ' should not be null or undefined'
119+
);
117120
});
118121
}));

0 commit comments

Comments
 (0)