Skip to content

Commit

Permalink
Fix NTSC rates in global start time test
Browse files Browse the repository at this point in the history
Signed-off-by: Joshua Minor <joshm@pixar.com>
  • Loading branch information
jminor committed Jan 29, 2025
1 parent 9b49540 commit 4c7f3fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_aaf_adapter.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 4c7f3fb

Please sign in to comment.