Skip to content

Commit

Permalink
Stringify the original base path
Browse files Browse the repository at this point in the history
  • Loading branch information
webknjaz authored Jun 9, 2019
1 parent aa6e452 commit 491924d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def unix_sockname(tmp_path, tmp_path_factory):

root_tmp_dir = Path('/tmp').resolve()
os_tmp_dir = Path(os.getenv('TMPDIR', '/tmp')).resolve()
original_base_tmp_path = Path(tmp_path_factory.getbasetemp())
original_base_tmp_path = Path(str(tmp_path_factory.getbasetemp()))

original_base_tmp_path_hash = md5(
str(original_base_tmp_path).encode(),
Expand Down

0 comments on commit 491924d

Please sign in to comment.