Skip to content

Commit 4472c00

Browse files
test: replace fcn with hasSameValues
1 parent 0c5eae4 commit 4472c00

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/array/fixed-endian-factory/test

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/array/fixed-endian-factory/test/test.sort.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ tape( 'the method sorts elements of a typed array without passing a comparison f
178178
expected = new ctor( 'little-endian', [ 1.0, 2.0, 3.0, 4.0, 5.0 ] );
179179
out = arr.sort();
180180
t.strictEqual( out.length, expected.length, 'returns expected value' );
181-
t.strictEqual( hasSameValues( out, expected ), 'returns expected value' );
181+
t.strictEqual( hasSameValues( out, expected ), true, 'returns expected value' );
182182
t.end();
183183
});
184184

0 commit comments

Comments
 (0)