@@ -1072,7 +1072,7 @@ tape( 'the function throws an error if provided a `dim` option which is not an i
10721072 }
10731073} ) ;
10741074
1075- tape ( 'the function returns the first index of a specified search element in an ndarray (row-major)' , function test ( t ) {
1075+ tape ( 'the function returns the last index of a specified search element in an ndarray (row-major)' , function test ( t ) {
10761076 var expected ;
10771077 var actual ;
10781078 var xbuf ;
@@ -1114,7 +1114,7 @@ tape( 'the function returns the first index of a specified search element in an
11141114 t . end ( ) ;
11151115} ) ;
11161116
1117- tape ( 'the function returns the first index of a specified search element in an ndarray (column-major)' , function test ( t ) {
1117+ tape ( 'the function returns the last index of a specified search element in an ndarray (column-major)' , function test ( t ) {
11181118 var expected ;
11191119 var actual ;
11201120 var xbuf ;
@@ -1548,7 +1548,7 @@ tape( 'the function supports providing a from index (0d ndarray, options)', func
15481548 t . end ( ) ;
15491549} ) ;
15501550
1551- tape ( 'the function supports providing a from index and operation dimension ' , function test ( t ) {
1551+ tape ( 'the function supports providing a from index (scalar, broadcasted) ' , function test ( t ) {
15521552 var expected ;
15531553 var actual ;
15541554 var xbuf ;
@@ -1613,7 +1613,7 @@ tape( 'the function supports providing a from index and operation dimension', fu
16131613 t . end ( ) ;
16141614} ) ;
16151615
1616- tape ( 'the function supports providing a from index and operation dimension (0d ndarray)' , function test ( t ) {
1616+ tape ( 'the function supports providing a from index (0d ndarray, broadcasted )' , function test ( t ) {
16171617 var expected ;
16181618 var fromIdx ;
16191619 var actual ;
@@ -1682,7 +1682,7 @@ tape( 'the function supports providing a from index and operation dimension (0d
16821682 t . end ( ) ;
16831683} ) ;
16841684
1685- tape ( 'the function supports providing an ndarray from index and search element with operation dimension (1d ndarray)' , function test ( t ) {
1685+ tape ( 'the function supports providing a from index ( ndarray)' , function test ( t ) {
16861686 var searchElement ;
16871687 var expected ;
16881688 var fromIdx ;
0 commit comments