Skip to content
Prev Previous commit
Next Next commit
Update test/parallel/test-object-proto-accessor-warning.js
Co-authored-by: Voltrex <mohammadkeyvanzade94@gmail.com>
  • Loading branch information
bmeck and VoltrexKeyva authored Aug 21, 2021
commit 083c842a8a15b56b42f1fac12b98a0c416988195
4 changes: 3 additions & 1 deletion test/parallel/test-object-proto-accessor-warning.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

const common = require('../common');

common.expectWarning('DeprecationWarning', '__proto__ is deprecated, use Object.getPrototypeOf instead', 'DEP0XXX');
common.expectWarning('DeprecationWarning',
'__proto__ is deprecated, use Object.getPrototypeOf instead',
'DEP0XXX');

const obj = {};
// eslint-disable-next-line
Expand Down