diff --git a/test/parallel/test-fs-write-optional-params.js b/test/parallel/test-fs-write-optional-params.js index 9a1e1cce738270..5072884b95c184 100644 --- a/test/parallel/test-fs-write-optional-params.js +++ b/test/parallel/test-fs-write-optional-params.js @@ -68,9 +68,7 @@ async function runTests(fd) { new Date(), new String('notPrimitive'), { [Symbol.toPrimitive]: (hint) => 'amObject' }, - - // TODO(LiviaMedeiros): add the following after DEP0162 EOL - // { toString() { return 'amObject'; } }, + { toString() { return 'amObject'; } }, ]) { await testInvalid(fd, 'ERR_INVALID_ARG_TYPE', badBuffer, {}); }