@@ -256,7 +256,7 @@ def test_get_stl_lib_dir(self):
256
256
returns the expected path for the stl library
257
257
"""
258
258
arch = ArchAarch_64 (self .ctx )
259
- recipe = Recipe .get_recipe ('icu ' , self .ctx )
259
+ recipe = Recipe .get_recipe ('libgeos ' , self .ctx )
260
260
self .assertTrue (recipe .need_stl_shared )
261
261
self .assertEqual (
262
262
recipe .get_stl_lib_dir (arch ),
@@ -288,7 +288,7 @@ def test_get_recipe_env_with(
288
288
mock_find_executable .return_value = expected_compiler
289
289
290
290
arch = ArchAarch_64 (self .ctx )
291
- recipe = Recipe .get_recipe ('icu ' , self .ctx )
291
+ recipe = Recipe .get_recipe ('libgeos ' , self .ctx )
292
292
assert recipe .need_stl_shared , True
293
293
env = recipe .get_recipe_env (arch )
294
294
# check that the mocks have been called
@@ -333,7 +333,7 @@ def test_install_stl_lib(
333
333
mock_isfile .return_value = False
334
334
335
335
arch = ArchAarch_64 (self .ctx )
336
- recipe = Recipe .get_recipe ('icu ' , self .ctx )
336
+ recipe = Recipe .get_recipe ('libgeos ' , self .ctx )
337
337
recipe .ctx = self .ctx
338
338
assert recipe .need_stl_shared , True
339
339
recipe .install_stl_lib (arch )
@@ -351,7 +351,7 @@ def test_install_stl_lib(
351
351
@mock .patch ('pythonforandroid.recipe.Recipe.install_stl_lib' )
352
352
def test_postarch_build (self , mock_install_stl_lib ):
353
353
arch = ArchAarch_64 (self .ctx )
354
- recipe = Recipe .get_recipe ('icu ' , self .ctx )
354
+ recipe = Recipe .get_recipe ('libgeos ' , self .ctx )
355
355
assert recipe .need_stl_shared , True
356
356
recipe .postbuild_arch (arch )
357
357
mock_install_stl_lib .assert_called_once_with (arch )
0 commit comments