Skip to content

Commit 0c6884b

Browse files
authored
chore: fix incorrect import
1 parent fd2aa12 commit 0c6884b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/dsemtk/benchmark/benchmark.ndarray.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function createBenchmark( len ) {
5959

6060
b.tic();
6161
for ( i = 0; i < b.iterations; i++ ) {
62-
v = dsemch( x.length, 1, x, 1, 0 );
62+
v = dsemtk( x.length, 1, x, 1, 0 );
6363
if ( isnan( v ) ) {
6464
b.fail( 'should not return NaN' );
6565
}

0 commit comments

Comments
 (0)