Skip to content

Commit 39805a9

Browse files
committed
Build fix
Signed-off-by: Darby Johnston <[email protected]>
1 parent 4866818 commit 39805a9

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

tests/test_otiod.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ def test_round_trip(self):
6262
result = otio.adapters.read_from_file(tmp_path)
6363

6464
clips = result.find_clips()
65+
self.assertTrue(clips)
6566
# \todo
6667
# self.assertTrue(
6768
# clips[0].media_reference.target_url.endswith(IMAGE0_EXAMPLE)
@@ -105,6 +106,7 @@ def test_round_trip_absolute_paths(self):
105106
)
106107

107108
clips = result.find_clips()
109+
self.assertTrue(clips)
108110
# \todo
109111
# self.assertTrue(
110112
# clips[0].media_reference.target_url.endswith(IMAGE0_EXAMPLE)

tests/test_otioz.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ def test_round_trip(self):
7575
result = otio.adapters.read_from_file(tmp_path)
7676

7777
clips = result.find_clips()
78+
self.assertTrue(clips)
7879
# \todo
7980
# self.assertTrue(
8081
# clips[0].media_reference.target_url.endswith(IMAGE0_EXAMPLE)

0 commit comments

Comments
 (0)