Skip to content

Commit

Permalink
Fixed test I broke in 0e2165b refs #223
Browse files Browse the repository at this point in the history
  • Loading branch information
simonw committed Apr 18, 2018
1 parent 0e2165b commit 2f20f2a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ def test_temporary_docker_directory_uses_hard_link():
template_dir=None,
plugins_dir=None,
static=[],
install=[],
) as temp_docker:
hello = os.path.join(temp_docker, 'hello')
assert 'world' == open(hello).read()
Expand All @@ -221,6 +222,7 @@ def test_temporary_docker_directory_uses_copy_if_hard_link_fails(mock_link):
template_dir=None,
plugins_dir=None,
static=[],
install=[],
) as temp_docker:
hello = os.path.join(temp_docker, 'hello')
assert 'world' == open(hello).read()
Expand Down

0 comments on commit 2f20f2a

Please sign in to comment.