Skip to content

Commit

Permalink
Fix failing tests on shapes
Browse files Browse the repository at this point in the history
  • Loading branch information
FranzBangar committed May 1, 2024
1 parent d75ec03 commit 73a941b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_construct/test_shape.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def test_inner_patch_extruded(self):
ring.set_inner_patch("test")

for operation in ring.shell:
self.assertEqual(operation.patch_names[ring.inner_patch], "test")
self.assertEqual(operation.patch_names["left"], "test")

def test_inner_patch_revolved(self):
face = Face([[0, 0, 0], [1, 0, 0], [1, 1, 0], [0, 1, 0]])
Expand All @@ -65,7 +65,7 @@ def test_inner_patch_revolved(self):
ring.set_inner_patch("test")

for operation in ring.shell:
self.assertEqual(operation.patch_names[ring.inner_patch], "test")
self.assertEqual(operation.patch_names["front"], "test")


class ElbowTests(unittest.TestCase):
Expand Down

0 comments on commit 73a941b

Please sign in to comment.