Skip to content

Commit 4420d4e

Browse files
Update func.jl
1 parent b7710bf commit 4420d4e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/func.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ end
133133
@test size(op1) == (NK, NK)
134134
@test has_adjoint(op1)
135135
@test has_mul(op1)
136-
@test !has_mul!(op1)
136+
@test has_mul!(op1)
137137
@test has_ldiv(op1)
138138
@test !has_ldiv!(op1)
139139

@@ -248,7 +248,7 @@ end
248248
@test size(op1) == (N, N)
249249
@test has_adjoint(op1)
250250
@test has_mul(op1)
251-
@test !has_mul!(op1)
251+
@test has_mul!(op1)
252252
@test has_ldiv(op1)
253253
@test !has_ldiv!(op1)
254254

@@ -405,4 +405,4 @@ end
405405
@test res a1 * A * v1 + b1 * w1
406406
@test res + res2 (a1 * A * v1 + b1 * w1) + (a2 * A * v2 + b2 * w2)
407407
end
408-
end
408+
end

0 commit comments

Comments
 (0)