Skip to content

Commit da1ddb0

Browse files
committed
Hopefully, fix test
Signed-off-by: Peter Targett <[email protected]>
1 parent 0fef7c5 commit da1ddb0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_serializable_object.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,8 @@ def test_imath(self):
144144
self.assertEqual(so.metadata["box"], b)
145145
v = [b.min, b.max]
146146
so.metadata["vectors"] = v
147-
self.assertEqual(so.metadata["vectors"], v)
147+
self.assertEqual(so.metadata["vectors"],
148+
[otio.schema.V2d(0.0, 0.0), otio.schema.V2d(16.0, 9.0)])
148149

149150

150151
class VersioningTests(unittest.TestCase, otio_test_utils.OTIOAssertions):

0 commit comments

Comments
 (0)