From f238bf85d6f912a30358204d8a1906abc1d4d3fc Mon Sep 17 00:00:00 2001 From: Eli Bendersky Date: Fri, 23 Sep 2011 17:04:21 +0300 Subject: [PATCH] fix detection of flag_after_symtable in compare_output: has to be lower-cased after the change made to lower() the lines before comparing --- tests/run_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run_tests.py b/tests/run_tests.py index b0b24a0..a89d163 100755 --- a/tests/run_tests.py +++ b/tests/run_tests.py @@ -97,7 +97,7 @@ def compare_output(s1, s2): flag_after_symtable = False for i in range(len(lines1)): - if 'Symbol table' in lines1[i]: + if 'symbol table' in lines1[i]: flag_after_symtable = True # Compare ignoring whitespace -- 2.30.2