Skip to content

Commit d24b5e2

Browse files
committed
Fix unit tests for python 3.5
1 parent bbc93a1 commit d24b5e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_basic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def test_project_with_no_commits(tmp_path):
7070
gitpython.Repo.init(testproject_path, bare=False)
7171

7272
result = build_docs_setup(
73-
testproject_path / "website/mkdocs.yml", testproject_path / "site"
73+
str(testproject_path / "website/mkdocs.yml"), str(testproject_path / "site")
7474
)
7575
assert result.exit_code == 0, (
7676
"'mkdocs build' command failed. Error: %s" % result.stdout

0 commit comments

Comments
 (0)