Skip to content

Commit 68fe153

Browse files
committed
fix unittest windows encoding issue
1 parent 152d11d commit 68fe153

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_basic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def test_basic_working(tmp_path):
5050
index_file = tmp_path/'index.html'
5151
built_site_tests(tmp_path)
5252
contents = index_file.read_text()
53-
assert re.search(r"Laatst geüpdatet op\:\s[\w].+", contents)
53+
assert re.search(r"Laatst ge\u00FCpdatet op\:\s[\w].+", contents)
5454

5555
# Test timeago
5656
result = build_docs_setup('test/basic_setup/mkdocs_timeago.yml', tmp_path)

0 commit comments

Comments
 (0)