diff --git a/tests/test_effect.py b/tests/test_effect.py index 86023119f..8bc366ab9 100644 --- a/tests/test_effect.py +++ b/tests/test_effect.py @@ -82,6 +82,7 @@ def test_setters(self): self.assertEqual(ef.effect_name, "flop") self.assertEqual(ef.enabled, True) + class TestLinearTimeWarp(unittest.TestCase, otio_test_utils.OTIOAssertions): def test_cons(self): ef = otio.schema.LinearTimeWarp("Foo", 2.5, {'foo': 'bar'}) @@ -91,7 +92,6 @@ def test_cons(self): self.assertEqual(ef.metadata, {"foo": "bar"}) self.assertEqual(ef.enabled, True) - def test_serialize(self): ef = otio.schema.LinearTimeWarp("Foo", 2.5, {'foo': 'bar'}) encoded = otio.adapters.otio_json.write_to_string(ef)