Skip to content

Commit 6243dfd

Browse files
Fix formatting of expected Complex128 and Float64 arrays
Signed-off-by: Suyash Pathak <[email protected]>
1 parent ba34b1b commit 6243dfd

File tree

1 file changed

+6
-6
lines changed
  • lib/node_modules/@stdlib/ndarray/base/nullary/test

1 file changed

+6
-6
lines changed

lib/node_modules/@stdlib/ndarray/base/nullary/test/test.9d.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -600,7 +600,7 @@ tape( 'the function applies a nullary callback to each indexed element of a 9-di
600600

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

603-
expected = new Complex128Array( [
603+
expected = new Complex128Array([
604604
10.0,
605605
10.0,
606606
10.0,
@@ -642,7 +642,7 @@ tape( 'the function applies a nullary callback to each indexed element of a 9-di
642642

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

645-
expected = new Complex128Array( [
645+
expected = new Complex128Array([
646646
10.0,
647647
10.0,
648648
10.0,
@@ -1251,7 +1251,7 @@ tape('the function applies a nullary callback to each indexed element of an 9-di
12511251

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

1254-
expected = new Float64Array( [
1254+
expected = new Float64Array([
12551255
10.0,
12561256
10.0,
12571257
0.0,
@@ -1293,7 +1293,7 @@ tape('the function applies a nullary callback to each indexed element of an 9-di
12931293

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

1296-
expected = new Float64Array( [
1296+
expected = new Float64Array([
12971297
10.0,
12981298
10.0,
12991299
0.0,
@@ -1709,7 +1709,7 @@ tape( 'the function applies a nullary callback to each indexed element of a 9-di
17091709

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

1712-
expected = new Complex128Array( [
1712+
expected = new Complex128Array([
17131713
10.0,
17141714
10.0,
17151715
10.0,
@@ -1767,7 +1767,7 @@ tape( 'the function applies a nullary callback to each indexed element of a 9-di
17671767

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

1770-
expected = new Complex128Array( [
1770+
expected = new Complex128Array([
17711771
10.0,
17721772
10.0,
17731773
10.0,

0 commit comments

Comments
 (0)