From d00a48f16e291eb95690436f06596ff19d22b28a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Ignacio=20S=C3=A1nchez=20Lara?= Date: Thu, 5 Jul 2018 17:57:17 +0200 Subject: [PATCH] Check array length --- test/integration/test_street_functions.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/integration/test_street_functions.py b/test/integration/test_street_functions.py index 420e6a2..1bf10cc 100644 --- a/test/integration/test_street_functions.py +++ b/test/integration/test_street_functions.py @@ -247,5 +247,6 @@ class TestBulkStreetFunctions(TestStreetFunctionsSetUp): @staticmethod def assert_close_points(points_a_by_cartodb_id, points_b_by_cartodb_id): + assert_equal(len(points_a_by_cartodb_id), len(points_b_by_cartodb_id)) for cartodb_id, point in points_a_by_cartodb_id.iteritems(): assert_close_enough(point, points_b_by_cartodb_id[cartodb_id])