394
394
@test s isa Matrix{Float32}
395
395
@test size (s) == (2 , 2 )
396
396
397
- s = similar (t, Float32, Int8 (2 ), 2 )
397
+ s = similar (t, Float32, ( Int8 (2 ), 2 ) )
398
398
@test s isa Matrix{Float32}
399
399
@test size (s) == (2 , 2 )
400
400
@@ -1212,7 +1212,7 @@ end
1212
1212
# The following code defines `MyArray1/2/3` with different `BroadcastStyle`s.
1213
1213
# 1. `MyArray1` and `MyArray1` have `similar` defined.
1214
1214
# We use them to simulate `BroadcastStyle` overloading `Base.copyto!`.
1215
- # 2. `MyArray3` has no `similar` defined.
1215
+ # 2. `MyArray3` has no `similar` defined.
1216
1216
# We use it to simulate `BroadcastStyle` overloading `Base.copy`.
1217
1217
# 3. Their resolved style could be summaryized as (`-` means conflict)
1218
1218
# | MyArray1 | MyArray2 | MyArray3 | Array
@@ -1308,7 +1308,7 @@ Base.BroadcastStyle(::Broadcast.ArrayStyle{MyArray2}, S::Broadcast.DefaultArrayS
1308
1308
f (s) = s .+ = 1
1309
1309
f (s)
1310
1310
@test (@allocated f (s)) == 0
1311
-
1311
+
1312
1312
# issue #185
1313
1313
A = StructArray (randn (ComplexF64, 3 , 3 ))
1314
1314
B = randn (ComplexF64, 3 , 3 )
@@ -1327,7 +1327,7 @@ Base.BroadcastStyle(::Broadcast.ArrayStyle{MyArray2}, S::Broadcast.DefaultArrayS
1327
1327
1328
1328
@testset " ambiguity check" begin
1329
1329
test_set = Any[StructArray ([1 ;2 + im]),
1330
- 1 : 2 ,
1330
+ 1 : 2 ,
1331
1331
(1 ,2 ),
1332
1332
StructArray (@SArray [1 ;1 + 2im ]),
1333
1333
(@SArray [1 2 ]),
0 commit comments