Skip to content

Commit 931c303

Browse files
authored
Remove redundant test in opentime (#712)
It looks like there was a duplicated block of code in the `test_seconds` test of `test_opentime`. This PR removes that.
1 parent d6851b7 commit 931c303

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

tests/test_opentime.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -555,14 +555,6 @@ def test_seconds(self):
555555
self.assertAlmostEqual(otio.opentime.to_seconds(t3), s3)
556556
self.assertAlmostEqual(otio.opentime.to_seconds(t4), s3)
557557

558-
v3 = 3459
559-
r3 = 24
560-
s3 = float(3459) / 24
561-
t3 = otio.opentime.RationalTime(v3, r3)
562-
t4 = otio.opentime.from_seconds(s3)
563-
self.assertAlmostEqual(otio.opentime.to_seconds(t3), s3)
564-
self.assertAlmostEqual(otio.opentime.to_seconds(t4), s3)
565-
566558
def test_duration(self):
567559
start_time = otio.opentime.from_frames(100, 24)
568560
end = otio.opentime.from_frames(200, 24)

0 commit comments

Comments
 (0)