@@ -8,7 +8,7 @@ module.exports = require('./common').runTestWithBindingPath(test);
88
99// Make sure the instance data finalizer is called at process exit. If the hint
1010// is non-zero, it will be printed out by the child process.
11- function testFinalizer ( bindingName , hint , expected ) {
11+ function testFinalizer ( bindingName , hint , expected ) {
1212 return new Promise ( ( resolve ) => {
1313 bindingName = bindingName . split ( '\\' ) . join ( '\\\\' ) ;
1414 const child = spawn ( process . execPath , [
@@ -30,7 +30,7 @@ function testFinalizer(bindingName, hint, expected) {
3030 } ) ;
3131}
3232
33- async function test ( bindingName ) {
33+ async function test ( bindingName ) {
3434 const binding = require ( bindingName ) . addon_data ( 0 ) ;
3535
3636 // Make sure it is possible to get/set instance data.
@@ -42,5 +42,5 @@ async function test(bindingName) {
4242
4343 await testFinalizer ( bindingName , 0 , [ 'addon_data: Addon::~Addon' ] ) ;
4444 await testFinalizer ( bindingName , 42 ,
45- [ 'addon_data: Addon::~Addon' , 'hint: 42' ] ) ;
45+ [ 'addon_data: Addon::~Addon' , 'hint: 42' ] ) ;
4646}
0 commit comments