diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_other.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_other.py b/tests/test_other.py index 4a62384c..0c597e9f 100644 --- a/tests/test_other.py +++ b/tests/test_other.py @@ -2591,6 +2591,7 @@ int main() main = src[src.find('function _main'):src.find('\n}', src.find('function _main'))] actual_ifs = main.count('if (') assert ifs == actual_ifs, main + ' : ' + str([ifs, actual_ifs]) + #print main test(r''' #include <stdio.h> @@ -2617,5 +2618,5 @@ int main() } return 0; } - ''', [8, 6, 6]) + ''', [8, 5, 5]) |