From 236e6e9a331be8190c71a677a23d114756541d5c Mon Sep 17 00:00:00 2001 From: Keith Johnson Date: Sun, 22 Sep 2013 15:23:11 -0400 Subject: [PATCH] Fix testcase for GPS info GPS coordinates for the sample photo were incorrect in the test case. Found the correct coordinates from: http://regex.info/exif.cgi --- tests/test_image.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_image.py b/tests/test_image.py index 9502a4b..de3ee77 100644 --- a/tests/test_image.py +++ b/tests/test_image.py @@ -82,8 +82,8 @@ def test_exif_gps(tmpdir): raw, simple = get_exif_tags(dst_file) assert 'gps' in simple - lat = 35.266666 - lon = -117.216666 + lat = 34.029167 + lon = -116.144167 assert abs(simple['gps']['lat'] - lat) < 0.0001 assert abs(simple['gps']['lon'] - lon) < 0.0001