Skip to content

Commit 4d33c9d

Browse files
chore: update benchmark.module.js
Signed-off-by: JoyBoy <[email protected]>
1 parent 380d46f commit 4d33c9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/node_modules/@stdlib/blas/ext/base/wasm/snansumkbn2/benchmark/benchmark.module.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ var bench = require( '@stdlib/bench' );
2424
var hasWebAssemblySupport = require( '@stdlib/assert/has-wasm-support' );
2525
var Memory = require( '@stdlib/wasm/memory' );
2626
var pkg = require( './../package.json' ).name;
27-
var dnansumkbn = require( './../lib' );
27+
var snansumkbn2 = require( './../lib' );
2828

2929

3030
// VARIABLES //
@@ -52,7 +52,7 @@ bench( pkg+':Module:constructor', opts, function benchmark( b ) {
5252

5353
b.tic();
5454
for ( i = 0; i < b.iterations; i++ ) {
55-
v = new dnansumkbn.Module( values[ i%values.length ] );
55+
v = new snansumkbn2.Module( values[ i%values.length ] );
5656
if ( typeof v !== 'object' ) {
5757
b.fail( 'should return an object' );
5858
}

0 commit comments

Comments
 (0)