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>
This commit is contained in:
parent
6fff47ffac
commit
342c3a1bbb
@ -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…
x
Reference in New Issue
Block a user