summaryrefslogtreecommitdiff
path: root/cli/tests/node_compat/test/parallel/test-buffer-copy.js
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/node_compat/test/parallel/test-buffer-copy.js')
-rw-r--r--cli/tests/node_compat/test/parallel/test-buffer-copy.js2
1 files changed, 0 insertions, 2 deletions
diff --git a/cli/tests/node_compat/test/parallel/test-buffer-copy.js b/cli/tests/node_compat/test/parallel/test-buffer-copy.js
index 2e7a012aa..a10bfebc5 100644
--- a/cli/tests/node_compat/test/parallel/test-buffer-copy.js
+++ b/cli/tests/node_compat/test/parallel/test-buffer-copy.js
@@ -165,7 +165,6 @@ assert.throws(
}
);
-/*
// Copy throws if sourceStart is greater than length of source
assert.throws(
() => Buffer.allocUnsafe(5).copy(Buffer.allocUnsafe(5), 0, 100),
@@ -174,7 +173,6 @@ assert.throws(
name: 'RangeError',
}
);
-*/
{
// Check sourceEnd resets to targetEnd if former is greater than the latter