Skip to content

Commit

Permalink
Auto-generated commit
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Jan 18, 2024
1 parent a17c4ea commit ccb7714
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base/mskfilter/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

var tape = require( 'tape' );
var Complex64Array = require( './../../../complex64' );
var isSameValue = require( '@stdlib/complex/base/assert/is-same-value' );
var isSameComplex64 = require( '@stdlib/assert/is-same-complex64' );
var isArray = require( '@stdlib/assert/is-array' );
var mskfilter = require( './../lib' );

Expand Down Expand Up @@ -89,7 +89,7 @@ tape( 'the function filters array elements (accessors)', function test( t ) {
t.strictEqual( isArray( actual ), true, 'returns expected value' );
t.notEqual( actual, x, 'returns different reference' );
for ( i = 0; i < expected.length; i++ ) {
t.strictEqual( isSameValue( actual[ i ], expected[ i ] ), true, 'returns expected value' );
t.strictEqual( isSameComplex64( actual[ i ], expected[ i ] ), true, 'returns expected value' );
}
t.end();
});
Expand Down

0 comments on commit ccb7714

Please sign in to comment.