From 543b7516a2c9973710816ff75e8a5c9ac978c5c2 Mon Sep 17 00:00:00 2001 From: Dongdong Tian Date: Mon, 8 Jun 2020 16:27:18 -0400 Subject: [PATCH] Add one more test --- tests/test_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_utils.py b/tests/test_utils.py index 74508326..988b49ca 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -27,7 +27,7 @@ def test_point_inside_box(self): assert point_inside_box(40, 130, None, 50, 100, None) assert not point_inside_box(40, 130, 50, 80, 100, 150) assert not point_inside_box(85, 130, 50, 80, 100, 150) - assert not point_inside_box(40, 170, 50, 80, 100, 150) + assert not point_inside_box(60, 170, 50, 80, 100, 150) def test_haversine(self): assert pytest.approx(haversine(40, 130, 50, 140), 0.01) == 12.22