Skip to content

Commit 136b320

Browse files
authored
chore: fix expectation
Signed-off-by: Muhammad Haris <[email protected]>
1 parent 0152682 commit 136b320

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/ndarray/base/count-truthy/test

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/ndarray/base/count-truthy/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ tape( 'the function returns `0` if the input is an empty ndarray', function test
4141
x = ndarray( 'float64', zeros( 8, 'float64' ), [ 0 ], [ 1 ], 0, 'row-major' );
4242

4343
actual = countTruthy( [ x ] );
44-
t.strictEqual( actual, true, 'returns expected value' );
44+
t.strictEqual( actual, 0, 'returns expected value' );
4545

4646
t.end();
4747
});

0 commit comments

Comments
 (0)