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 d8fc736 commit 5b0d799Copy full SHA for 5b0d799
lib/node_modules/@stdlib/ndarray/base/includes/test/test.js
@@ -35,7 +35,7 @@ tape( 'main export is a function', function test( t ) {
35
t.end();
36
});
37
38
-tape( 'the function returns `true` if the input is an empty ndarray', function test( t ) {
+tape( 'the function returns `false` if the input is an empty ndarray', function test( t ) {
39
var actual;
40
var x;
41
var v;
@@ -46,7 +46,7 @@ tape( 'the function returns `true` if the input is an empty ndarray', function t
46
'dtype': 'float64'
47
48
actual = includes( [ x, v ] );
49
- t.strictEqual( actual, true, 'returns expected value' );
+ t.strictEqual( actual, false, 'returns expected value' );
50
51
52
0 commit comments