Skip to content

Commit 13cebb5

Browse files
authored
chore: fix Javascript lint errors
PR-URL: #8797 Closes: #8796 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent c6b78ee commit 13cebb5

File tree

1 file changed

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

1 file changed

+8
-8
lines changed

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

Lines changed: 8 additions & 8 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,
@@ -617,7 +617,7 @@ tape( 'the function applies a nullary callback to each indexed element of a 9-di
617617
10.0,
618618
10.0,
619619
10.0
620-
] );
620+
]);
621621
t.strictEqual( isSameComplex128Array( x.data, expected ), true, 'returns expected value' );
622622

623623
t.end();
@@ -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,
@@ -659,7 +659,7 @@ tape( 'the function applies a nullary callback to each indexed element of a 9-di
659659
10.0,
660660
10.0,
661661
10.0
662-
] );
662+
]);
663663
t.strictEqual( isSameComplex128Array( x.data, expected ), true, 'returns expected value' );
664664

665665
t.end();
@@ -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)