From 6dc1282d5a6b5e0a7334ab4008d90c1eba101236 Mon Sep 17 00:00:00 2001 From: Daniel Cousens Date: Thu, 6 Aug 2015 22:12:27 +1000 Subject: [PATCH] tests: fix ascending test description --- test/methods.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/methods.js b/test/methods.js index f9337e1..8741252 100644 --- a/test/methods.js +++ b/test/methods.js @@ -100,16 +100,16 @@ test('copy() after slice()', function (t) { t.end() }) -test('copy() ascending and descending', function (t) { +test('copy() ascending', function (t) { var b = new B('abcdefghij') - b.copy(b, 0, 3, 10) // ascending copy + b.copy(b, 0, 3, 10) t.equal(b.toString(), 'defghijhij') t.end() }) test('copy() descending', function (t) { var b = new B('abcdefghij') - b.copy(b, 3, 0, 7) // descending copy + b.copy(b, 3, 0, 7) t.equal(b.toString(), 'abcabcdefg') t.end() }) -- 2.34.1