Skip to content

Commit 061c6bb

Browse files
committed
Rewrite A[ct]_(mul|ldiv|rdiv)_B[ct][!] calls in test/linalg/uniformscaling.jl as *, /, \, mul!, ldiv!, or rdiv!.
1 parent 25f36af commit 061c6bb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/linalg/uniformscaling.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ let
6969
@testset "transpose, conj, inv" begin
7070
@test ndims(J) == 2
7171
@test transpose(J) == J
72-
@test J * [1 0; 0 1] == conj(Ac_mul_B(J, [1 0; 0 1])) # ctranpose (and A(c)_mul_B)
72+
@test J * [1 0; 0 1] == conj(*(Base.LinAlg.Adjoint(J), [1 0; 0 1])) # ctranpose (and A(c)_mul_B)
7373
@test I + I === UniformScaling(2) # +
7474
@test inv(I) == I
7575
@test inv(J) == UniformScaling(inv(λ))

0 commit comments

Comments
 (0)