Skip to content

Commit

Permalink
more windows test case debugging
Browse files Browse the repository at this point in the history
the actual thing works, it's just the test case that is broken :/
  • Loading branch information
konstin committed May 9, 2022
1 parent b1fdeea commit 6a7ef52
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test-crates/with-data/check_installed/check_installed.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import locale
import sys
from pathlib import Path

Expand All @@ -12,7 +13,11 @@
installed_data = (
venv_root.joinpath("data_subdir").joinpath("hello.txt").read_text().strip()
)
assert installed_data == "Hi! 😊"
assert installed_data == "Hi! 😊", (
installed_data,
"Hi! 😊",
locale.getpreferredencoding(),
)
header_file = (
venv_root.joinpath("include")
.joinpath("site")
Expand Down

0 comments on commit 6a7ef52

Please sign in to comment.