fixed unit test

This commit is contained in:
Daniel Marjamäki 2012-07-13 08:38:27 +02:00
parent 6018bb4636
commit aa4fe3a1e2
1 changed files with 1 additions and 1 deletions

View File

@ -1868,7 +1868,7 @@ private:
" v.empty();\n"
" return v.empty();\n"
"}");
ASSERT_EQUALS("[test.cpp:2]: (warning) Useless call of function 'empty()'. Did you intend to call 'clear()' instead?\n", errout.str());
ASSERT_EQUALS("[test.cpp:1]: (warning) Useless call of function 'empty()'. Did you intend to call 'clear()' instead?\n", errout.str());
}
};