Skip to content

Commit

Permalink
fixed unittest
Browse files Browse the repository at this point in the history
  • Loading branch information
chenkasirer committed Nov 29, 2023
1 parent 1a1a54b commit c028eec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/compas_timber/test_joint.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def test_joint_beam_keys(mocker):
assert len(list(A.graph.nodes())) == 3
assert len(list(A.graph.edges())) == 2
assert A.joints[0] == J
assert J.data["beams"] == {B1.key, B2.key}
assert J.data["beams"] == [B1.key, B2.key]


def test_joint_override_protection(mocker):
Expand Down

0 comments on commit c028eec

Please sign in to comment.