diff --git a/src/index.ts b/src/index.ts index d709b1d..f18a4f3 100644 --- a/src/index.ts +++ b/src/index.ts @@ -26,8 +26,8 @@ const supportedSystems: InterchangeSystemBuilderArguments[] = [ useSelfUpdatingEtas: true, shuttleStopArrivalDegreeDelta: 0.001, initialRegion: { - topLeft: { latitude: 33.7987, longitude: -117.8581 }, - bottomRight: { latitude: 33.7887, longitude: -117.8481 }, + topLeft: { latitude: 33.85733, longitude: -117.89553 }, + bottomRight: { latitude: 33.73970, longitude: -117.81878 }, }, } ] diff --git a/src/resolvers/__tests__/SystemResolverTests.test.ts b/src/resolvers/__tests__/SystemResolverTests.test.ts index 502ed92..aafe377 100644 --- a/src/resolvers/__tests__/SystemResolverTests.test.ts +++ b/src/resolvers/__tests__/SystemResolverTests.test.ts @@ -60,8 +60,8 @@ describe("SystemResolvers", () => { expect(response.body.singleResult.errors).toBeUndefined(); const initialRegion = (response.body.singleResult.data as any).system.initialRegion; expect(initialRegion).toEqual({ - topLeft: { latitude: 33.7987, longitude: -117.8581 }, - bottomRight: { latitude: 33.7887, longitude: -117.8481 }, + topLeft: { latitude: 33.85733, longitude: -117.89553 }, + bottomRight: { latitude: 33.7397, longitude: -117.81878 }, }); }); }); diff --git a/testHelpers/apolloTestServerHelpers.ts b/testHelpers/apolloTestServerHelpers.ts index 4d0e8ad..a4e65dc 100644 --- a/testHelpers/apolloTestServerHelpers.ts +++ b/testHelpers/apolloTestServerHelpers.ts @@ -27,8 +27,8 @@ const systemInfoForTesting: InterchangeSystemBuilderArguments = { useSelfUpdatingEtas: false, shuttleStopArrivalDegreeDelta: 0.001, initialRegion: { - topLeft: { latitude: 33.7987, longitude: -117.8581 }, - bottomRight: { latitude: 33.7887, longitude: -117.8481 }, + topLeft: { latitude: 33.85733, longitude: -117.89553 }, + bottomRight: { latitude: 33.73970, longitude: -117.81878 }, }, };