From 3e4c6d5955c52bba792fd44f939a028c4fe73656 Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Wed, 26 Dec 2018 15:32:13 -0800 Subject: [PATCH] Update test_parse.py Tiwddle --- tests/test_parse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_parse.py b/tests/test_parse.py index ba33306..250176a 100644 --- a/tests/test_parse.py +++ b/tests/test_parse.py @@ -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}")