Fixed test changes I forgot in previous commit.

This commit is contained in:
Edoardo Prezioso 2012-09-03 15:20:34 +02:00
parent 804fbe3f8f
commit 04661fd7d0
1 changed files with 2 additions and 2 deletions

View File

@ -2390,7 +2390,7 @@ private:
{ {
const char code[] = "namespace std { }"; const char code[] = "namespace std { }";
ASSERT_EQUALS(";", tok(code)); ASSERT_EQUALS("", tok(code));
} }
{ {
@ -5637,7 +5637,7 @@ private:
"}\n"; "}\n";
checkSimplifyTypedef(code); checkSimplifyTypedef(code);
ASSERT_EQUALS(";", tok(code)); ASSERT_EQUALS("", tok(code));
ASSERT_EQUALS("", errout.str()); ASSERT_EQUALS("", errout.str());
} }