Browse Source

test: remove arguments.callee usage

arguments.callee is forbidden in strict mode and the fact that it's
being used masked a possible error in this test.

PR-URL: https://github.com/nodejs/node/pull/3167
Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com>
v5.x
Roman Reiss 9 years ago
parent
commit
342c3a1bbb
  1. 4
      test/parallel/test-fs-utimes.js

4
test/parallel/test-fs-utimes.js

@ -30,7 +30,7 @@ function expect_errno(syscall, resource, err, errno) {
if (err && (err.code === errno || err.code === 'ENOSYS')) {
tests_ok++;
} else {
console.log('FAILED:', arguments.callee.name, util.inspect(arguments));
console.log('FAILED:', 'expect_errno', util.inspect(arguments));
}
}
@ -39,7 +39,7 @@ function expect_ok(syscall, resource, err, atime, mtime) {
err && err.code === 'ENOSYS') {
tests_ok++;
} else {
console.log('FAILED:', arguments.callee.name, util.inspect(arguments));
console.log('FAILED:', 'expect_ok', util.inspect(arguments));
}
}

Loading…
Cancel
Save