diff options
-rwxr-xr-x | tests/runner.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/runner.py b/tests/runner.py index 4bf3f5ee..ba3fdff2 100755 --- a/tests/runner.py +++ b/tests/runner.py @@ -3858,11 +3858,11 @@ at function.:blag expected = open(path_from_root('tests', 'parseInt', 'output.txt'), 'r').read() self.do_run(src, expected) - def test_transtrcase(self): - src = ''' - #include <stdio.h> - #include <string.h> - int main() { + def test_transtrcase(self): + src = ''' + #include <stdio.h> + #include <string.h> + int main() { char szToupr[] = "hello, "; char szTolwr[] = "EMSCRIPTEN"; strupr(szToupr); @@ -3871,8 +3871,8 @@ at function.:blag printf(szTolwr); return 0; } - ''' - self.do_run(src, 'HELLO, emscripten') + ''' + self.do_run(src, 'HELLO, emscripten') def test_printf(self): if Settings.USE_TYPED_ARRAYS != 2: return self.skip('i64 mode 1 requires ta2') |