Skip to content

Commit 7007cf4

Browse files
authored
test: fix return values
Signed-off-by: Athan <kgryte@gmail.com>
1 parent 14fc1ac commit 7007cf4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • lib/node_modules/@stdlib/blas/ext/join/docs/types

lib/node_modules/@stdlib/blas/ext/join/docs/types/test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ import join = require( './index' );
118118
'dtype': 'generic'
119119
});
120120

121-
join.assign( x, ',', y ); // $ExpectType genericndarray<number>
122-
join.assign( x, ',', y, {} ); // $ExpectType genericndarray<number>
121+
join.assign( x, ',', y ); // $ExpectType genericndarray<string>
122+
join.assign( x, ',', y, {} ); // $ExpectType genericndarray<string>
123123
}
124124

125125
// The compiler throws an error if the `assign` method is provided a first argument which is not an ndarray...

0 commit comments

Comments
 (0)