We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 017db07 commit fbf5906Copy full SHA for fbf5906
lib/node_modules/@stdlib/ndarray/base/some/test/test.js
@@ -52,7 +52,7 @@ tape( 'the function returns `false` if provided an empty input ndarray', functio
52
t.end();
53
});
54
55
-tape( 'the function returns `true` if a provided `n` parameter is less than zero', function test( t ) {
+tape( 'the function returns `false` if a provided `n` parameter is less than zero', function test( t ) {
56
var actual;
57
var x;
58
var n;
@@ -63,7 +63,7 @@ tape( 'the function returns `true` if a provided `n` parameter is less than zero
63
64
65
actual = some( [ x, n ] );
66
- t.strictEqual( actual, true, 'returns expected value' );
+ t.strictEqual( actual, false, 'returns expected value' );
67
68
69
0 commit comments