Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
chenkasirer committed Jan 23, 2024
1 parent 3d156ec commit 80d2bfa
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tests/compas_timber/test_joint.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
from compas_timber.connections import TButtJoint
from compas_timber.connections import LButtJoint
from compas_timber.connections import LMiterJoint
from compas_timber.connections import XHalfLapJoint
from compas_timber.connections import FrenchRidgeLapJoint
from compas_timber.connections import find_neighboring_beams
from compas_timber.parts import Beam

Expand Down Expand Up @@ -159,7 +161,6 @@ def test_joint_create_kwargs_passthrough_xhalflap():
assembly.add_beam(beam_a)
assembly.add_beam(beam_b)

from compas_timber.connections import XHalfLapJoint
joint = XHalfLapJoint.create(assembly, beam_a, beam_b, cut_plane_bias=0.4)

assert joint.cut_plane_bias == 0.4
Expand All @@ -172,11 +173,9 @@ def test_joint_create_kwargs_passthrough_frenchridge():
assembly.add_beam(beam_a)
assembly.add_beam(beam_b)

from compas_timber.connections import FrenchRidgeLapJoint

joint = FrenchRidgeLapJoint.create(assembly, beam_a, beam_b, cutoff=2.4)

assert joint.cutoff == 2.4
assert joint.cutoff == 0.4


if not compas.IPY:
Expand Down

0 comments on commit 80d2bfa

Please sign in to comment.