diff --git a/complex64/test/test.sort.js b/complex64/test/test.sort.js index cc7934b5..2aa04fda 100644 --- a/complex64/test/test.sort.js +++ b/complex64/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();