Skip to content

Commit

Permalink
Get rid of the street test because we're filtering out streets now
Browse files Browse the repository at this point in the history
  • Loading branch information
iandees committed Oct 11, 2016
1 parent afd6f88 commit f06a14b
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions tests/checker_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,3 @@ def test_match_filter_waffle_shop(self):
matches = filter_matches(venue_name, possibilities)

self.assertEqual(0, len(matches))

def test_match_filter_front_street(self):
possibilities = [
{"id": 0, "tags": {"name": u"Brown Street"}},
{"id": 0, "tags": {"name": u"Front Avenue"}},
]
venue_name = u"Front Street"
matches = filter_matches(venue_name, possibilities)

self.assertEqual(0, len(matches))

0 comments on commit f06a14b

Please sign in to comment.