diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-07-12 18:24:03 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-07-12 18:24:03 -0700 |
commit | 42f93a46a60f2c4408a700aadc5d3fa104ae757e (patch) | |
tree | 9cbba3c706fd06b6fee9e71efc5ba9e62bfc7a74 /tests/runner.py | |
parent | 96f8df489e01be9bd834c58f4c703ef9bb0570b1 (diff) |
fix tabs->spaces
Diffstat (limited to 'tests/runner.py')
-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') |