Skip to content

Commit 489602e

Browse files
Merge pull request #49 from jonathanrocher/fix/nonexistent_image
Fix references to deleted sample image
2 parents 7c219a0 + d175031 commit 489602e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

stage0_starting_script/face_detect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
image_paths = [
1717
join("..", "sample_images", "IMG-0311_xmas_2020.JPG"),
18-
join("..", "sample_images", "owls.jpg")
18+
join("..", "sample_images", "20210802_191429.jpg")
1919
]
2020

2121
# Load the trained file from the module root.

stage3.0_first_views/pycasa/model/test_image_folder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
class TestImageFolder(unittest.TestCase):
1313
def setUp(self):
14-
self.filenames = ["IMG-0311_xmas_2020.JPG", "owls.jpg"]
14+
self.filenames = ["IMG-0311_xmas_2020.JPG", "20210802_191429.jpg"]
1515
self.img_folder = ImageFolder(directory=SAMPLE_IMG_DIR)
1616

1717
def test_filters_images(self):

stage5.1_fuller_application/pycasa/model/tests/test_image_folder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
class TestImageFolder(unittest.TestCase):
1313
def setUp(self):
14-
self.filenames = ["IMG-0311_xmas_2020.JPG", "owls.jpg"]
14+
self.filenames = ["IMG-0311_xmas_2020.JPG", "20210802_191429.jpg"]
1515
self.img_folder = ImageFolder(directory=SAMPLE_IMG_DIR)
1616

1717
def test_with_file(self):

0 commit comments

Comments
 (0)