diff --git a/tests/test_utils.py b/tests/test_utils.py index e701aae6..0572b5e5 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -251,6 +251,7 @@ def test_temporary_docker_directory_uses_hard_link(): plugins_dir=None, static=[], install=[], + spatialite=False, ) as temp_docker: hello = os.path.join(temp_docker, 'hello') assert 'world' == open(hello).read() @@ -276,6 +277,7 @@ def test_temporary_docker_directory_uses_copy_if_hard_link_fails(mock_link): plugins_dir=None, static=[], install=[], + spatialite=False, ) as temp_docker: hello = os.path.join(temp_docker, 'hello') assert 'world' == open(hello).read()