fixed @assert -> @fact on test_interfaces.jl

This commit is contained in:
Jukka Aho
2015-06-27 18:58:46 +03:00
parent 0c76c24c52
commit 38f0f81551
+6 -6
View File
@@ -7,13 +7,13 @@ using Logging
using JuliaFEM.interfaces: solve_elasticity_interface!
facts("test solve_elasticity_interface!") do
test = solve_elasticity_interface!()
@pending
end
#facts("test solve_elasticity_interface!") do
# test = solve_elasticity_interface!()
# @pending
#end
facts("test interface modules") do
test = solve_elasticity_interface!()
@assert test == 0
output = solve_elasticity_interface!()
@fact output => 0
end