This commit is contained in:
Martin Ettl 2015-07-13 21:31:24 +02:00
parent 1a872a2c9f
commit 027bdd3370
1 changed files with 3 additions and 3 deletions

View File

@ -3427,9 +3427,9 @@ private:
" }\n"
" double x, y, z;\n"
"};");
TODO_ASSERT_EQUALS("", "[test.cpp:10]: (warning) Redundant assignment of 'x' to itself.\n"
"[test.cpp:10]: (warning) Redundant assignment of 'y' to itself.\n"
"[test.cpp:10]: (warning) Redundant assignment of 'z' to itself.\n", errout.str());
ASSERT_EQUALS("[test.cpp:10]: (warning) Redundant assignment of 'x' to itself.\n"
"[test.cpp:10]: (warning) Redundant assignment of 'y' to itself.\n"
"[test.cpp:10]: (warning) Redundant assignment of 'z' to itself.\n", errout.str());
}