diff --git a/test/test.sort.js b/test/test.sort.js index 11de369..2956174 100644 --- a/test/test.sort.js +++ b/test/test.sort.js @@ -74,7 +74,7 @@ tape( 'main export is a function', function test( t ) { t.end(); }); -tape( 'attached to the prototype of the main export is an `sort` method', function test( t ) { +tape( 'attached to the prototype of the main export is a `sort` method', function test( t ) { t.strictEqual( hasOwnProp( Complex64Array.prototype, 'sort' ), true, 'has property' ); t.strictEqual( isFunction( Complex64Array.prototype.sort ), true, 'has method' ); t.end();