Skip to content

Commit d970214

Browse files
committed
Auto-generated commit
1 parent 12a495f commit d970214

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -850,6 +850,7 @@ A total of 53 issues were closed in this release:
850850

851851
<details>
852852

853+
- [`9bfb6b0`](https://github.com/stdlib-js/stdlib/commit/9bfb6b06411afd725918cef27c7dc97ba282eed9) - **test:** ensure support for dtype instances _(by Athan Reines)_
853854
- [`37363f2`](https://github.com/stdlib-js/stdlib/commit/37363f29620c7f2037efaa6cbcce72f74adce03c) - **feat:** update `blas/base/ndarray` TypeScript declarations [(#11356)](https://github.com/stdlib-js/stdlib/pull/11356) _(by stdlib-bot)_
854855
- [`843db97`](https://github.com/stdlib-js/stdlib/commit/843db97a005833d8362c60da9a0326eca5aad1b8) - **docs:** update namespace table of contents [(#11358)](https://github.com/stdlib-js/stdlib/pull/11358) _(by stdlib-bot)_
855856
- [`9260f31`](https://github.com/stdlib-js/stdlib/commit/9260f31994955a4c597080f7044d73f1f26ba856) - **feat:** add C implementation for `blas/ext/base/ndarray/csum` [(#10696)](https://github.com/stdlib-js/stdlib/pull/10696) _(by Kaustubh Patange, Athan Reines, stdlib-bot)_

ext/base/ndarray/dsorthp/test/test.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ var tape = require( 'tape' );
2424
var Float64Array = require( '@stdlib/array/float64' );
2525
var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' );
2626
var getData = require( '@stdlib/ndarray/data-buffer' );
27-
var getDtype = require( '@stdlib/ndarray/dtype' );
27+
var getDType = require( '@stdlib/ndarray/dtype' );
2828
var getStrides = require( '@stdlib/ndarray/strides' );
2929
var getOffset = require( '@stdlib/ndarray/offset' );
3030
var getShape = require( '@stdlib/ndarray/shape' );
@@ -52,7 +52,7 @@ tape( 'the function sorts a one-dimensional ndarray (increasing order)', functio
5252

5353
actual = dsorthp( [ x, order ] );
5454
t.strictEqual( actual, x, 'returns expected value' );
55-
t.strictEqual( getDtype( actual ), 'float64', 'returns expected value' );
55+
t.strictEqual( String( getDType( actual ) ), 'float64', 'returns expected value' );
5656
t.deepEqual( getData( actual ), new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0 ] ), 'returns expected value' );
5757
t.deepEqual( getShape( actual ), [ 5 ], 'returns expected value' );
5858
t.deepEqual( getStrides( actual ), [ 1 ], 'returns expected value' );
@@ -73,7 +73,7 @@ tape( 'the function sorts a one-dimensional ndarray (decreasing order)', functio
7373

7474
actual = dsorthp( [ x, order ] );
7575
t.strictEqual( actual, x, 'returns expected value' );
76-
t.strictEqual( getDtype( actual ), 'float64', 'returns expected value' );
76+
t.strictEqual( String( getDType( actual ) ), 'float64', 'returns expected value' );
7777
t.deepEqual( getData( actual ), new Float64Array( [ 5.0, 4.0, 3.0, 2.0, 1.0 ] ), 'returns expected value' );
7878
t.deepEqual( getShape( actual ), [ 5 ], 'returns expected value' );
7979
t.deepEqual( getStrides( actual ), [ 1 ], 'returns expected value' );

0 commit comments

Comments
 (0)