From ef2647c79ea2c591c59777005e236780a74973ce Mon Sep 17 00:00:00 2001 From: Seth Rutner Date: Wed, 7 Aug 2019 11:29:17 -0700 Subject: [PATCH 1/2] Update tests.py --- tests.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tests.py b/tests.py index f9c52e4..ca3a10e 100644 --- a/tests.py +++ b/tests.py @@ -12,13 +12,15 @@ '23_12.jpg', 'haunted cabinet 2.jpg', 'spooky.jpg', - '23-11-332.jpg' + '23-11-332.jpg', + 'test-table-1' ] expected_dirs = [ '33', '23', 'spooky', - 'haunted_cabinet' + 'haunted_cabinet', + 'test_table' ] expected_file_paths = [ @@ -26,7 +28,8 @@ '23/23_12.jpg', '23_11/23_11_332.jpg', 'haunted_cabinet/haunted_cabinet_2.jpg', - 'spooky/spooky.jpg' + 'spooky/spooky.jpg', + 'test_table/test_table_1' ] class TestSizzle(unittest.TestCase): From 96488122d86d9432ddf220a6ccd8b8340aa122f7 Mon Sep 17 00:00:00 2001 From: Seth Rutner Date: Wed, 7 Aug 2019 11:31:56 -0700 Subject: [PATCH 2/2] Update tests.py --- tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests.py b/tests.py index ca3a10e..f659fec 100644 --- a/tests.py +++ b/tests.py @@ -13,7 +13,7 @@ 'haunted cabinet 2.jpg', 'spooky.jpg', '23-11-332.jpg', - 'test-table-1' + 'test-table-1.jpg' ] expected_dirs = [ '33', @@ -29,7 +29,7 @@ '23_11/23_11_332.jpg', 'haunted_cabinet/haunted_cabinet_2.jpg', 'spooky/spooky.jpg', - 'test_table/test_table_1' + 'test_table/test_table_1.jpg' ] class TestSizzle(unittest.TestCase):