Skip to content
This repository was archived by the owner on Jul 19, 2023. It is now read-only.

Commit a77e6b7

Browse files
committed
BC composition tests not broken
1 parent 9463cb4 commit a77e6b7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/bc_coeff_compositions.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -220,21 +220,21 @@ end
220220
ghost_u = A \ u
221221

222222
# Check that A\u.(x) is consistent with analytic_AL \ u.(x)
223-
@test_broken analytic_u ghost_u
223+
@test analytic_u ghost_u
224224

225225
# Check ldiv!
226226
u_temp = zeros(N)
227227
ldiv!(u_temp, A, u)
228-
@test_broken u_temp ghost_u analytic_u
228+
@test u_temp ghost_u analytic_u
229229

230230
# Check \ for Matrix
231231
M2 = [u 2.0*u 10.0*u]
232232
analytic_M = analytic_AL \ (M2 .- analytic_Ab)
233233
ghost_M = A \ M2
234-
@test_broken analytic_M ghost_M
234+
@test analytic_M ghost_M
235235

236236
# Check ldiv! for Matrix
237237
M_temp = zeros(N,3)
238238
ldiv!(M_temp, A, M2)
239-
@test_broken M_temp ghost_M analytic_M
239+
@test M_temp ghost_M analytic_M
240240
end

0 commit comments

Comments
 (0)