Skip to content

Commit a44c40c

Browse files
committed
remove special chars in unittest for windows build
1 parent 68fe153 commit a44c40c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/basic_setup/mkdocs_theme_locale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use_directory_urls: true
33

44
theme:
55
name: 'material'
6-
language: nl
6+
language: de
77

88
plugins:
99
- search

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\u00FCpdatet op\:\s[\w].+", contents)
53+
assert re.search(r"Letztes Update\:\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)