We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccb2158 commit 48e9160Copy full SHA for 48e9160
bin/jp-compliance
@@ -127,7 +127,8 @@ class ComplianceTestRunner(object):
127
command.append(test_case['expression'])
128
process = subprocess.Popen(command, stdout=subprocess.PIPE,
129
stderr=subprocess.PIPE,
130
- stdin=subprocess.PIPE)
+ stdin=subprocess.PIPE,
131
+ encoding='utf-8')
132
process.stdin.write(json.dumps(test_case['given']))
133
process.stdin.flush()
134
stdout, stderr = process.communicate()
0 commit comments