better test data

git-svn-id: https://public-transport-enabler.googlecode.com/svn/trunk@905 0924bc21-9374-b0fa-ee44-9ff1593b38f0
This commit is contained in:
andreas.schildbach@gmail.com 2012-01-28 12:02:49 +00:00
parent 6fdb316785
commit cd335b530e

View file

@ -42,7 +42,7 @@ public class ZvvProviderLiveTest
@Test
public void nearbyStationsByStation() throws Exception
{
final NearbyStationsResult result = provider.queryNearbyStations(new Location(LocationType.STATION, 183400), 0, 0);
final NearbyStationsResult result = provider.queryNearbyStations(new Location(LocationType.STATION, 8503000), 0, 0);
System.out.println(result.stations.size() + " " + result.stations);
}
@ -58,7 +58,7 @@ public class ZvvProviderLiveTest
@Test
public void queryDepartures() throws Exception
{
final QueryDeparturesResult result = provider.queryDepartures(183400, 0, false);
final QueryDeparturesResult result = provider.queryDepartures(8503000, 0, false);
System.out.println(result.stationDepartures);
}