From 9277c6236a8216450d4ebe3242ce6d56c1a7e437 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Thu, 31 May 2018 07:47:22 -0700 Subject: [PATCH] Fixed tests I broke in b18e45158 --- tests/test_utils.py | 2 ++ 1 file changed, 2 insertions(+) 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()