summaryrefslogtreecommitdiffstats
path: root/tests/create_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/create_test.py')
-rw-r--r--tests/create_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/create_test.py b/tests/create_test.py
index 4d1f1d656e..deb53aca20 100644
--- a/tests/create_test.py
+++ b/tests/create_test.py
@@ -101,7 +101,7 @@ TEST_CASE("[{name_pascal_case}] Example test case") {{
if args.invasive:
print("Trying to insert include directive in test_main.cpp...")
- with open("test_main.cpp", "r") as file:
+ with open("test_main.cpp", "r", encoding="utf-8") as file:
contents = file.read()
match = re.search(r'#include "tests.*\n', contents)