From 555ea820f85241e5a8838b875eb9cf93c51eaa8d Mon Sep 17 00:00:00 2001 From: Valentin Berlier Date: Wed, 6 Dec 2023 03:24:02 +0100 Subject: [PATCH] =?UTF-8?q?test:=20=C2=A7=C2=A7=C2=A7=20leads=20to=20bad?= =?UTF-8?q?=20encoding=20detection=20on=20windows?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_bolt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_bolt.py b/tests/test_bolt.py index 3183769..cb8e498 100644 --- a/tests/test_bolt.py +++ b/tests/test_bolt.py @@ -13,7 +13,7 @@ BOLT_EXAMPLES = [ Function(source) for source in Path("tests/resources/bolt_examples.mcfunction") - .read_text() + .read_text("utf-8") .split("###\n") ]