Skip to content

Commit 32a3027

Browse files
committed
squash: make test.js follow test style guidelines
1 parent b5f2c51 commit 32a3027

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

test/addons/errno-exception/test.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
'use strict';
2+
23
const common = require('../../common');
4+
5+
// Verify that the path argument to node::ErrnoException() can contain UTF-8
6+
// characters.
7+
38
const assert = require('assert');
49
const binding = require(`./build/${common.buildType}/binding`);
510
const err = binding.errno();
11+
612
assert.strictEqual(err.syscall, 'syscall');
713
assert.strictEqual(err.errno, 10);
814
assert.strictEqual(err.path, 'päth');

0 commit comments

Comments
 (0)