chore: rename look up location (#2603)

Renames a function call and fixes a NullPointerException on Android
This commit is contained in:
Johannes Klein
2025-01-09 16:43:54 +01:00
committed by GitHub
parent 94002f0f59
commit f84d09648d
5 changed files with 14 additions and 14 deletions

View File

@@ -2,7 +2,7 @@ export const getPredictionsForImage = jest.fn( () => Promise.resolve( { predicti
export const getPredictionsForLocation = jest.fn( () => Promise.resolve( { predictions: [] } ) );
export const removeLogListener = jest.fn( );
export const resetStoredResults = jest.fn( );
export const lookUpLocation = jest.fn( location => ( {
export const getCellLocation = jest.fn( location => ( {
...location,
elevation: 12
} ) );