Skip to content

Commit e31d002

Browse files
fix: test lint errors
1 parent 78a884d commit e31d002

File tree

1 file changed

+41
-41
lines changed
  • lib/node_modules/@stdlib/array/base/broadcasted-quinary3d/test

1 file changed

+41
-41
lines changed

lib/node_modules/@stdlib/array/base/broadcasted-quinary3d/test/test.js

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ tape( 'the function applies a provided callback to broadcasted input arrays and
8787
];
8888
w = [
8989
[
90-
[ 3.0, 4.0 ]
90+
[ 3.0, 4.0 ]
9191
]
9292
];
9393
u = [
@@ -100,12 +100,12 @@ tape( 'the function applies a provided callback to broadcasted input arrays and
100100

101101
expected = [
102102
[
103-
[ 13.0, 16.0 ],
104-
[ 16.0, 19.0 ]
103+
[ 13.0, 16.0 ],
104+
[ 16.0, 19.0 ]
105105
],
106106
[
107-
[ 13.0, 16.0 ],
108-
[ 16.0, 19.0 ]
107+
[ 13.0, 16.0 ],
108+
[ 16.0, 19.0 ]
109109
]
110110
];
111111
bquinary3d( [ x, y, z, w, u, out ], shapes, add );
@@ -137,7 +137,7 @@ tape( 'the function applies a provided callback to broadcasted input arrays and
137137
];
138138
w = [
139139
[
140-
[ 3.0, 4.0 ]
140+
[ 3.0, 4.0 ]
141141
]
142142
];
143143
u = [
@@ -150,12 +150,12 @@ tape( 'the function applies a provided callback to broadcasted input arrays and
150150

151151
expected = [
152152
[
153-
[ 13.0, 16.0 ],
154-
[ 16.0, 19.0 ]
153+
[ 13.0, 16.0 ],
154+
[ 16.0, 19.0 ]
155155
],
156156
[
157157
[ 13.0, 16.0 ],
158-
[ 16.0, 19.0 ]
158+
[ 16.0, 19.0 ]
159159
]
160160
];
161161
bquinary3d( [ x, y, z, w, u, out ], shapes, add );
@@ -172,64 +172,64 @@ tape( 'the function applies a provided callback to broadcasted input arrays and
172172
];
173173
x = [
174174
[
175-
[ 1.0, 2.0 ],
176-
[ 3.0, 4.0 ]
175+
[ 1.0, 2.0 ],
176+
[ 3.0, 4.0 ]
177177
],
178178
[
179-
[ 1.0, 2.0 ],
180-
[ 3.0, 4.0 ]
179+
[ 1.0, 2.0 ],
180+
[ 3.0, 4.0 ]
181181
]
182182
];
183183
y = [
184184
[
185-
[ 1.0, 2.0 ],
186-
[ 3.0, 4.0 ]
185+
[ 1.0, 2.0 ],
186+
[ 3.0, 4.0 ]
187187
],
188188
[
189-
[ 1.0, 2.0 ],
190-
[ 3.0, 4.0 ]
189+
[ 1.0, 2.0 ],
190+
[ 3.0, 4.0 ]
191191
]
192192
];
193193
z = [
194194
[
195-
[ 1.0, 2.0 ],
196-
[ 3.0, 4.0 ]
195+
[ 1.0, 2.0 ],
196+
[ 3.0, 4.0 ]
197197
],
198198
[
199-
[ 1.0, 2.0 ],
200-
[ 3.0, 4.0 ]
199+
[ 1.0, 2.0 ],
200+
[ 3.0, 4.0 ]
201201
]
202202
];
203203
w = [
204204
[
205-
[ 1.0, 2.0 ],
206-
[ 3.0, 4.0 ]
205+
[ 1.0, 2.0 ],
206+
[ 3.0, 4.0 ]
207207
],
208208
[
209-
[ 1.0, 2.0 ],
210-
[ 3.0, 4.0 ]
209+
[ 1.0, 2.0 ],
210+
[ 3.0, 4.0 ]
211211
]
212212
];
213213
u = [
214214
[
215-
[ 1.0, 2.0 ],
216-
[ 3.0, 4.0 ]
215+
[ 1.0, 2.0 ],
216+
[ 3.0, 4.0 ]
217217
],
218218
[
219-
[ 1.0, 2.0 ],
220-
[ 3.0, 4.0 ]
219+
[ 1.0, 2.0 ],
220+
[ 3.0, 4.0 ]
221221
]
222222
];
223223
out = zeros3d( shapes[ 5 ] );
224224

225225
expected = [
226226
[
227-
[ 5.0, 10.0 ],
228-
[ 15.0, 20.0 ]
227+
[ 5.0, 10.0 ],
228+
[ 15.0, 20.0 ]
229229
],
230230
[
231-
[ 5.0, 10.0 ],
232-
[ 15.0, 20.0 ]
231+
[ 5.0, 10.0 ],
232+
[ 15.0, 20.0 ]
233233
]
234234
];
235235
bquinary3d( [ x, y, z, w, u, out ], shapes, add );
@@ -258,12 +258,12 @@ tape( 'the function does not invoke a provided callback if provided an output sh
258258
];
259259
x = [
260260
[
261-
[ 1.0, 2.0 ],
262-
[ 3.0, 4.0 ]
261+
[ 1.0, 2.0 ],
262+
[ 3.0, 4.0 ]
263263
],
264264
[
265-
[ 1.0, 2.0 ],
266-
[ 3.0, 4.0 ]
265+
[ 1.0, 2.0 ],
266+
[ 3.0, 4.0 ]
267267
]
268268
];
269269
y = x;
@@ -303,12 +303,12 @@ tape( 'the function does not invoke a provided callback if provided an output sh
303303
];
304304
x = [
305305
[
306-
[ 1.0, 2.0 ],
307-
[ 3.0, 4.0 ]
306+
[ 1.0, 2.0 ],
307+
[ 3.0, 4.0 ]
308308
],
309309
[
310-
[ 1.0, 2.0 ],
311-
[ 3.0, 4.0 ]
310+
[ 1.0, 2.0 ],
311+
[ 3.0, 4.0 ]
312312
]
313313
];
314314
y = x;

0 commit comments

Comments
 (0)