We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 589d558 commit a2cbe31Copy full SHA for a2cbe31
test/exception_test.cpp
@@ -189,10 +189,10 @@ void test_multiple_occurrences_with_different_names()
189
}
190
catch (multiple_occurrences& e)
191
{
192
- BOOST_CHECK( (e.get_option_name() == "--cfgfile") || (e.get_option_name() == "--configfile"));
+ BOOST_CHECK( (e.get_option_name() == "--cfgfile") || (e.get_option_name() == "--config-file"));
193
BOOST_CHECK(
194
(string(e.what()) == "option '--cfgfile' cannot be specified more than once") ||
195
- (string(e.what()) == "option '--configfile' cannot be specified more than once")
+ (string(e.what()) == "option '--config-file' cannot be specified more than once")
196
);
197
198
0 commit comments