We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b65b84 commit fc9f708Copy full SHA for fc9f708
testing/test_better_root_errors.py
@@ -31,9 +31,8 @@ def setup_hg_repo(wd: WorkDir) -> WorkDir:
31
"""Set up a mercurial repository for testing."""
32
try:
33
wd("hg init")
34
- wd("hg config --local ui.username 'test <test@example.com>'")
35
wd.add_command = "hg add ."
36
- wd.commit_command = "hg commit -m test-{reason}"
+ wd.commit_command = 'hg commit -m test-{reason} -u test -d "0 0"'
37
return wd
38
except Exception:
39
pytest.skip("hg not available")
0 commit comments