[fix] changing root expansion test for "E Broadway", which now returns "broadway" instead of "east", which is a better result anyway

This commit is contained in:
Al
2018-02-05 19:35:57 -05:00
parent 0ee3f6b294
commit 86fdaf7188

View File

@@ -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("Park S", "park", options));
CHECK_CALL(test_root_expansion_contains("Avenue Rd", "avenue", 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("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 Center St", "center", options));
CHECK_CALL(test_root_expansion_contains("E Ctr 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)); CHECK_CALL(test_root_expansion_contains("E Center Street", "center", options));