File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed
lib/node_modules/@stdlib/ndarray/base/binary-input-casting-dtype/test Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -238,7 +238,9 @@ tape( 'the function resolves a casting data type (policy=accumulation)', functio
238
238
'float64' ,
239
239
'int16' ,
240
240
'generic' ,
241
- 'complex64'
241
+ 'complex64' ,
242
+ 'uint16' ,
243
+ 'bool'
242
244
] ;
243
245
dt2 = [
244
246
'float16' ,
@@ -247,7 +249,9 @@ tape( 'the function resolves a casting data type (policy=accumulation)', functio
247
249
'float64' ,
248
250
'int32' ,
249
251
'float32' ,
250
- 'float32'
252
+ 'float32' ,
253
+ 'uint8' ,
254
+ 'bool'
251
255
] ;
252
256
dt3 = [
253
257
'int8' ,
@@ -256,7 +260,9 @@ tape( 'the function resolves a casting data type (policy=accumulation)', functio
256
260
'int16' ,
257
261
'int32' ,
258
262
'int32' ,
259
- 'int16'
263
+ 'int16' ,
264
+ 'uint32' ,
265
+ 'bool'
260
266
] ;
261
267
expected = [
262
268
'float16' ,
@@ -265,7 +271,9 @@ tape( 'the function resolves a casting data type (policy=accumulation)', functio
265
271
'float64' ,
266
272
'int32' ,
267
273
'generic' ,
268
- 'complex64'
274
+ 'complex64' ,
275
+ 'uint32' ,
276
+ 'float64'
269
277
] ;
270
278
271
279
for ( i = 0 ; i < dt1 . length ; i ++ ) {
You can’t perform that action at this time.
0 commit comments