diff options
-rw-r--r-- | test/cmark.py | 2 | ||||
-rwxr-xr-x | test/spec_tests.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/cmark.py b/test/cmark.py index 21d0b3f..253e3a8 100644 --- a/test/cmark.py +++ b/test/cmark.py @@ -26,7 +26,7 @@ class CMark: if sysname == 'Darwin': libname += ".dylib" elif sysname == 'Windows': - libname += ".dll" + libname = "cmark.dll" else: libname += ".so" if library_dir: 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): |