diff --git a/heptapod/hooks/tests/test_check_write.py b/heptapod/hooks/tests/test_check_write.py index f32d8597021825b32cc7de48256eef4e7028756a_aGVwdGFwb2QvaG9va3MvdGVzdHMvdGVzdF9jaGVja193cml0ZS5weQ==..d31cdb0e18c0baf7c9afa42d0cedbaa965fbdbab_aGVwdGFwb2QvaG9va3MvdGVzdHMvdGVzdF9jaGVja193cml0ZS5weQ== 100644 --- a/heptapod/hooks/tests/test_check_write.py +++ b/heptapod/hooks/tests/test_check_write.py @@ -24,6 +24,7 @@ def test_write_empty_repo(tmpdir): wrapper = init_repo(tmpdir) + switch_user(wrapper, 'guest') with pytest.raises(error.HookAbort) as exc_info: wrapper.write_commit('foo', content='Foo', return_ctx=True) diff --git a/heptapod/testhelpers.py b/heptapod/testhelpers.py index f32d8597021825b32cc7de48256eef4e7028756a_aGVwdGFwb2QvdGVzdGhlbHBlcnMucHk=..d31cdb0e18c0baf7c9afa42d0cedbaa965fbdbab_aGVwdGFwb2QvdGVzdGhlbHBlcnMucHk= 100644 --- a/heptapod/testhelpers.py +++ b/heptapod/testhelpers.py @@ -31,6 +31,8 @@ ui = uimod.ui.load() else: ui = base_ui.copy() + if ui.environ is os.environ: + ui.environ = dict(ui.environ) if config is not None: for section_name, section in config.items(): for item_name, item_value in section.items():