Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
danvk committed Nov 8, 2024
1 parent 0541a27 commit d28bc49
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions oldnyc/geocode/coders/title_pattern_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def test_title_pattern():
assert tp.codeRecord(item) == {
"type": "intersection",
"source": title,
"address": "10th Street (East) & Broadway, Manhattan, NY",
"address": "10th Street (East) and Broadway, Manhattan, NY",
"data": ("10th Street (East)", "Broadway", "Manhattan"),
}

Expand All @@ -19,7 +19,7 @@ def test_title_pattern():
assert tp.codeRecord(item) == {
"type": "intersection",
"source": title,
"address": "3rd Street & New Dorp Lane, Staten Island, NY",
"address": "3rd Street and New Dorp Lane, Staten Island, NY",
"data": ("3rd Street", "New Dorp Lane", "Staten Island"),
}

Expand All @@ -37,7 +37,7 @@ def test_alt_title():
assert tp.codeRecord(item) == {
"type": "intersection",
"source": item.alt_title[0],
"address": "112th Street & 1st Avenue, Manhattan, NY",
"address": "112th Street and 1st Avenue, Manhattan, NY",
"data": ("112th Street", "1st Avenue", "Manhattan"),
}

Expand Down

0 comments on commit d28bc49

Please sign in to comment.