summaryrefslogtreecommitdiff
path: root/test/spec_tests.py
diff options
context:
space:
mode:
authorNick Wellnhofer <wellnhofer@aevum.de>2014-12-31 16:24:55 +0100
committerNick Wellnhofer <wellnhofer@aevum.de>2014-12-31 17:14:00 +0100
commite9e8fa617a666b9ef36fb47dedb3d0fe96dfca48 (patch)
tree1d4e746acb1b148659d7880ef9897ebd1a424a37 /test/spec_tests.py
parent1b4d53f301e31fb5e4fbe687741367b938377009 (diff)
Fix spec tests on Windows
Diffstat (limited to 'test/spec_tests.py')
-rwxr-xr-xtest/spec_tests.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/spec_tests.py b/test/spec_tests.py
index b8b480e..cc676be 100755
--- a/test/spec_tests.py
+++ b/test/spec_tests.py
@@ -84,7 +84,7 @@ def get_tests(specfile):
header_re = re.compile('#+ ')
- with open(specfile, 'r') as specf:
+ with open(specfile, 'r', encoding='utf-8') as specf:
for line in specf:
line_number = line_number + 1
if state == 0 and re.match(header_re, line):