Skip to content

Commit

Permalink
Fixing posix <-> windows compatibility issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
domdfcoding committed Oct 25, 2020
1 parent d34c570 commit 99d8fe5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_git_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,9 @@ def test_check_git_status(git_repo: GitRepo):
assert files == ["M file.txt"]


def test_assert_clean(git_repo: GitRepo, capsys):
def test_assert_clean(git_repo: GitRepo, capsys, monkeypatch):
monkeypatch.setenv("GIT_COMMITTER_NAME", "Guido")

repo_path = PathPlus(git_repo.workspace)
assert assert_clean(repo_path)

Expand Down

0 comments on commit 99d8fe5

Please sign in to comment.