From 86fdaf718829fb34587d246b13083b771f4bae0d Mon Sep 17 00:00:00 2001 From: Al Date: Mon, 5 Feb 2018 19:35:57 -0500 Subject: [PATCH] [fix] changing root expansion test for "E Broadway", which now returns "broadway" instead of "east", which is a better result anyway --- test/test_expand.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_expand.c b/test/test_expand.c index 12e70369..51da5a2e 100644 --- a/test/test_expand.c +++ b/test/test_expand.c @@ -172,7 +172,7 @@ TEST test_street_root_expansions(void) { CHECK_CALL(test_root_expansion_contains("Park S", "park", options)); CHECK_CALL(test_root_expansion_contains("Avenue Rd", "avenue", options)); CHECK_CALL(test_root_expansion_contains("Broadway", "broadway", options)); - CHECK_CALL(test_root_expansion_contains("E Broadway", "east", options)); + CHECK_CALL(test_root_expansion_contains("E Broadway", "broadway", options)); CHECK_CALL(test_root_expansion_contains("E Center St", "center", options)); CHECK_CALL(test_root_expansion_contains("E Ctr St", "center", options)); CHECK_CALL(test_root_expansion_contains("E Center Street", "center", options));