Skip to content

Commit

Permalink
Address review comment
Browse files Browse the repository at this point in the history
  • Loading branch information
habrahamsson-skanetrafiken committed Oct 16, 2024
1 parent b992e36 commit eb0c0ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/src/test/java/org/opentripplanner/GtfsTest.java
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package org.opentripplanner;

import static com.google.common.truth.Truth.assertThat;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertNull;
import static org.opentripplanner.routing.api.request.StreetMode.NOT_SET;
import static org.opentripplanner.routing.api.request.StreetMode.WALK;
import static org.opentripplanner.updater.trip.BackwardsDelayPropagationType.REQUIRED_NO_DATA;

import com.google.common.truth.Truth;
import com.google.transit.realtime.GtfsRealtime.FeedEntity;
import com.google.transit.realtime.GtfsRealtime.FeedMessage;
import com.google.transit.realtime.GtfsRealtime.TripUpdate;
Expand Down Expand Up @@ -179,7 +179,7 @@ public void validateLeg(
assertEquals(1, leg.getStreetNotes().size());
assertEquals(alert, leg.getStreetNotes().iterator().next().note.toString());
} else {
Truth.assertThat(leg.getStreetNotes()).isEmpty();
assertThat(leg.getStreetNotes()).isEmpty();
}
}

Expand Down

0 comments on commit eb0c0ee

Please sign in to comment.