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 Dec 27, 2023
1 parent f849630 commit 70cf7e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/test.index_of.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ tape( 'the method throws an error if invoked with a `this` context which is not

function badValue( value ) {
return function badValue() {
return arr.indexOf.call( value, 0 );
return arr.indexOf.call( value, new Complex64( 1.0, 1.0 ) );
};
}
});
Expand Down
2 changes: 1 addition & 1 deletion test/test.last_index_of.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ tape( 'the method throws an error if invoked with a `this` context which is not

function badValue( value ) {
return function badValue() {
return arr.lastIndexOf.call( value, 0 );
return arr.lastIndexOf.call( value, new Complex64( 1.0, 1.0 ) );
};
}
});
Expand Down

0 comments on commit 70cf7e2

Please sign in to comment.