Skip to content

Commit fd94b2d

Browse files
authored
test: fix expected value
Signed-off-by: Athan <[email protected]>
1 parent 6d77e6a commit fd94b2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ tape( 'the method supports specifying a starting search index', function test( t
180180
arr = new ctor( 'little-endian', [ 1.0, 2.0, 3.0, 4.0, 2.0 ] );
181181

182182
v = arr.indexOf( 2.0, 0 );
183-
t.strictEqual( v, 2, 'returns expected value' );
183+
t.strictEqual( v, 1, 'returns expected value' );
184184

185185
v = arr.indexOf( 2.0, 2 );
186186
t.strictEqual( v, 4, 'returns expected value' );

0 commit comments

Comments
 (0)