Skip to content

Commit

Permalink
Updated box rotation unit test
Browse files Browse the repository at this point in the history
  • Loading branch information
jlstevens committed Jun 18, 2017
1 parent 0270d74 commit 66f842f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/testpaths.py
Expand Up @@ -62,7 +62,7 @@ def test_box_simple_constructor_rotated(self):


def test_box_tuple_constructor_rotated(self):
box = Box(0,0,(1,2), orientation=np.pi/8)
box = Box(0,0,(2,1), orientation=np.pi/8)
self.assertEqual(np.allclose(box.data[0], self.rotated_rect), True)

def test_box_aspect_constructor_rotated(self):
Expand Down

0 comments on commit 66f842f

Please sign in to comment.