From b173f4e43fccccd0b66994e888da222c976b4d72 Mon Sep 17 00:00:00 2001 From: Joshua Minor Date: Fri, 13 Dec 2024 16:18:43 -0800 Subject: [PATCH] Fix NTSC rates in global start time test Signed-off-by: Joshua Minor --- tests/test_aaf_adapter.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_aaf_adapter.py b/tests/test_aaf_adapter.py index d8b1127..31464c1 100644 --- a/tests/test_aaf_adapter.py +++ b/tests/test_aaf_adapter.py @@ -1931,12 +1931,12 @@ def test_aaf_writer_metadata_roundtrip(self): expected) def test_aaf_writer_global_start_time(self): - for tc, rate in [("01:00:00:00", 23.97), + for tc, rate in [("01:00:00:00", 24000/1001), ("01:00:00:00", 24), ("01:00:00:00", 25), - ("01:00:00:00", 29.97), + ("01:00:00:00", 30000/1001), ("01:00:00:00", 30), - ("01:00:00:00", 59.94), + ("01:00:00:00", 60000/1001), ("01:00:00:00", 60)]: otio_timeline = otio.schema.Timeline()