From 38ef2e5943d7de33e761a428c03ab9201a186153 Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Sun, 17 Jun 2018 13:27:40 -0700 Subject: [PATCH] Fixed failing tests caused by version_note --- tests/test_utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_utils.py b/tests/test_utils.py index d12bf927..e168c3f2 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -252,6 +252,7 @@ def test_temporary_docker_directory_uses_hard_link(): static=[], install=[], spatialite=False, + version_note=None, ) as temp_docker: hello = os.path.join(temp_docker, 'hello') assert 'world' == open(hello).read() @@ -278,6 +279,7 @@ def test_temporary_docker_directory_uses_copy_if_hard_link_fails(mock_link): static=[], install=[], spatialite=False, + version_note=None, ) as temp_docker: hello = os.path.join(temp_docker, 'hello') assert 'world' == open(hello).read()