Skip to content

Commit 942b88b

Browse files
committed
fixing typo
1 parent 9afffd1 commit 942b88b

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

test/FESpacesTests/DiscreteModelWithFEMapsTests.jl

+6-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,11 @@ Uₕ = TrialFESpace(Vₕ,d)
3434
dh = interpolate_everywhere(d,Uₕ)
3535

3636
grid = get_grid(model)
37-
@test add_mesh_displacement!(grid_map,dh) 3.0*get_node_coordinates(grid)
38-
@test update_coordinates!(grid_map,dh) 2.0*get_node_coordinates(grid)
37+
38+
add_mesh_displacement!(grid_map,dh)
39+
@test get_node_coordinates(grid_map) 3.0*get_node_coordinates(grid)
40+
41+
update_coordinates!(grid_map,dh)
42+
@test get_node_coordinates(grid_map) 2.0*get_node_coordinates(grid)
3943

4044
end #module

0 commit comments

Comments
 (0)