Skip to content

Commit

Permalink
Fix monorail test assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardehrenfried committed Mar 4, 2024
1 parent 7bb59fc commit 7ac7cf2
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,8 @@ public void monorailRoute() throws IOException {
.map(Route::mode)
.map(Objects::toString)
.collect(Collectors.toSet());
assertEquals(Set.of("MONORAIL", "TRAM", "FERRY", "BUS", "RAIL"), modes);
// for some reason the monorail feed says its route is of type rail
assertEquals(Set.of("TRAM", "FERRY", "BUS", "RAIL"), modes);
}

@Test
Expand Down

0 comments on commit 7ac7cf2

Please sign in to comment.