Update test_parse.py

Tiwddle
This commit is contained in:
Jamie Hardt
2018-12-26 15:32:13 -08:00
parent 11034dd9f1
commit 3e4c6d5955

View File

@@ -17,7 +17,7 @@ class TestParse(TestCase):
for fn, count in zip(files, counts):
with open(f"tests/edls/{fn}" ,'r') as f:
edl = pycmx.parse_cmx3600(f)
actual = len(list(edl.events ))
actual = len( list( edl.events ))
self.assertTrue( actual == count , f"expected {count} in file {fn} but found {actual}")