In test helpers, update method call for ETA update

This commit is contained in:
2025-11-10 20:23:25 -08:00
parent 5bcb1b3ccd
commit 589f630f23

View File

@@ -37,7 +37,7 @@ export async function addMockEtaToRepository(repository: ShuttleGetterSetterRepo
const expectedEta = etas[0];
expectedEta.stopId = stopId;
expectedEta.shuttleId = shuttleId;
await repository.addOrUpdateEta(expectedEta);
await repository.addOrUpdateEtaFromExternalSource(expectedEta);
return expectedEta;
}