Skip to content

Commit

Permalink
restore tests without gravity
Browse files Browse the repository at this point in the history
  • Loading branch information
korbireischl committed Jan 12, 2025
1 parent f57c98b commit 5a8142c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/test_cra.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def test_cra():

assembly.add_interfaces_from_meshes([interface1], 0, 1)

cra_solve(assembly, density=1, gravity=1)
cra_solve(assembly, density=1)

IS_FORCE_CORRECT = True
for edge in assembly.graph.edges():
Expand Down
2 changes: 1 addition & 1 deletion tests/test_cra_penalty.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def test_cra_penalty():

assembly_interfaces_numpy(assembly, amin=1e-6, tmax=1e-4)

cra_penalty_solve(assembly, density=1, gravity=1)
cra_penalty_solve(assembly, density=1)

block = assembly.graph.node_attribute(1, "block")
weight = block.volume()
Expand Down
2 changes: 1 addition & 1 deletion tests/test_rbe.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def test_cra_penalty():

assembly_interfaces_numpy(assembly, amin=1e-6, tmax=1e-4)

rbe_solve(assembly, density=1, gravity=1)
rbe_solve(assembly, density=1)

block = assembly.graph.node_attribute(1, "block")
weight = block.volume()
Expand Down

0 comments on commit 5a8142c

Please sign in to comment.