Changed expected result for test case TestTokenizer::removeParantheses3 to simplify it more

This commit is contained in:
Reijo Tomperi 2009-05-28 23:13:15 +03:00
parent a3be307c03
commit a015704591
1 changed files with 1 additions and 1 deletions

View File

@ -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()