From 27d1073f8c136407c0afe1c7731d9100aeed63ec Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Thu, 3 Jan 2019 19:35:20 -0800 Subject: [PATCH] Update test_parse.py --- tests/test_parse.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_parse.py b/tests/test_parse.py index 2b9bb93..b5ea2e8 100644 --- a/tests/test_parse.py +++ b/tests/test_parse.py @@ -18,7 +18,7 @@ class TestParse(TestCase): counts = [ 287, 466, 250 , 376, 120 , 3 , 466 ] for fn, count in zip(type(self).files, counts): - with open(f"tests/edls/" + fn ,'r') as f: + with open("tests/edls/" + fn ,'r') as f: edl = pycmx.parse_cmx3600(f) actual = len( list( edl.events )) self.assertTrue( actual == count , @@ -26,7 +26,7 @@ class TestParse(TestCase): def test_list_sanity(self): for fn in type(self).files: - with open(f"tests/edls/" + fn ,'r') as f: + with open("tests/edls/" + fn ,'r') as f: edl = pycmx.parse_cmx3600(f) self.assertTrue( type(edl.title) is str ) self.assertTrue( len(edl.title) > 0 )