From a015704591d2b864373bc73ce13fe00258a41844 Mon Sep 17 00:00:00 2001 From: Reijo Tomperi Date: Thu, 28 May 2009 23:13:15 +0300 Subject: [PATCH] Changed expected result for test case TestTokenizer::removeParantheses3 to simplify it more --- test/testtokenize.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testtokenize.cpp b/test/testtokenize.cpp index b84cd73eb..2e7c66af0 100644 --- a/test/testtokenize.cpp +++ b/test/testtokenize.cpp @@ -1631,7 +1631,7 @@ private: std::ostringstream ostr; for (const Token *tok = tokenizer.tokens(); tok; tok = tok->next()) ostr << " " << tok->str(); - ASSERT_EQUALS(std::string(" void foo ( ) { if ( ( true ) == true ) { } }"), ostr.str()); + TODO_ASSERT_EQUALS(std::string(" void foo ( ) { { } }"), ostr.str()); } void simplify_numeric_condition()