Drop the hidden dir

This commit is contained in:
psakiev 2023-01-09 12:46:59 -07:00
parent 54e4a72b8e
commit 7494893d3b

View File

@ -1555,7 +1555,7 @@ def get_rev():
def mutable_mock_env_path(tmpdir, mutable_config):
"""Fixture for mocking the internal spack environments directory."""
saved_path = ev.environment.default_env_path
mock_path = tmpdir.join(".mock-env-path")
mock_path = tmpdir.join("mock-env-path")
ev.environment.default_env_path = str(mock_path)
yield mock_path
ev.environment.default_env_path = saved_path