diff options
Diffstat (limited to 'tests/test_other.py')
-rw-r--r-- | tests/test_other.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_other.py b/tests/test_other.py index 5e631b41..f8b9d027 100644 --- a/tests/test_other.py +++ b/tests/test_other.py @@ -2902,5 +2902,5 @@ int main(int argc, char **argv) { ''') Popen([PYTHON, EMCC, 'code.cpp']).communicate() - self.assertContained('I am ' + self.get_dir() + '/a.out.js', run_js('a.out.js', engine=NODE_JS)) + self.assertContained('I am ' + self.get_dir().replace('\\', '/') + '/a.out.js', run_js('a.out.js', engine=NODE_JS)) |