]> zoso.dev Git - buffer.git/commitdiff
tests: fix ascending test description
authorDaniel Cousens <github@dcousens.com>
Thu, 6 Aug 2015 12:12:27 +0000 (22:12 +1000)
committerDaniel Cousens <github@dcousens.com>
Thu, 6 Aug 2015 12:12:27 +0000 (22:12 +1000)
test/methods.js

index f9337e1b1ae6035da984c48d760f453a7a2bfd88..8741252423c40ab02010a4028e79e96a216cec29 100644 (file)
@@ -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()
 })