Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions lib/node_modules/@stdlib/ndarray/base/nullary/test/test.9d.js
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,7 @@

nullary( [ x ], constantFunction( new Complex128( 10.0, 10.0 ) ) );

expected = new Complex128Array( [
expected = new Complex128Array([
10.0,
10.0,
10.0,
Expand All @@ -617,7 +617,7 @@
10.0,
10.0,
10.0
] );
]);
t.strictEqual( isSameComplex128Array( x.data, expected ), true, 'returns expected value' );

t.end();
Expand All @@ -642,7 +642,7 @@

nullary( [ x ], constantFunction( new Complex128( 10.0, 10.0 ) ) );

expected = new Complex128Array( [
expected = new Complex128Array([
10.0,
10.0,
10.0,
Expand All @@ -659,7 +659,7 @@
10.0,
10.0,
10.0
] );
]);
t.strictEqual( isSameComplex128Array( x.data, expected ), true, 'returns expected value' );

t.end();
Expand Down Expand Up @@ -1251,7 +1251,7 @@

nullary( [ x ], constantFunction( 10.0 ) );

expected = new Float64Array( [
expected = new Float64Array([
10.0,
10.0,
0.0,
Expand All @@ -1266,7 +1266,7 @@
0.0,
10.0,
10.0,
0.0,

Check warning on line 1269 in lib/node_modules/@stdlib/ndarray/base/nullary/test/test.9d.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

File has too many lines (1654). Maximum allowed is 1000
0.0
]);
t.strictEqual( isSameFloat64Array( x.data, expected ), true, 'returns expected value' );
Expand All @@ -1293,7 +1293,7 @@

nullary( [ x ], constantFunction( 10.0 ) );

expected = new Float64Array( [
expected = new Float64Array([
10.0,
10.0,
0.0,
Expand Down Expand Up @@ -1709,7 +1709,7 @@

nullary( [ x ], constantFunction( new Complex128( 10.0, 10.0 ) ) );

expected = new Complex128Array( [
expected = new Complex128Array([
10.0,
10.0,
10.0,
Expand Down Expand Up @@ -1767,7 +1767,7 @@

nullary( [ x ], constantFunction( new Complex128( 10.0, 10.0 ) ) );

expected = new Complex128Array( [
expected = new Complex128Array([
10.0,
10.0,
10.0,
Expand Down