From 38f0f81551ec2ee14a1bb950a48bfa583ec9eeee Mon Sep 17 00:00:00 2001 From: Jukka Aho Date: Sat, 27 Jun 2015 18:58:46 +0300 Subject: [PATCH] fixed @assert -> @fact on test_interfaces.jl --- test/test_interfaces.jl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/test_interfaces.jl b/test/test_interfaces.jl index 37eaeaf..237fdd4 100644 --- a/test/test_interfaces.jl +++ b/test/test_interfaces.jl @@ -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