From a2cbe31befdcad3ca01d69912fac13c06d65173a Mon Sep 17 00:00:00 2001 From: Vladimir Prus Date: Fri, 6 Jul 2018 10:34:49 +0300 Subject: [PATCH] fix typo --- test/exception_test.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/exception_test.cpp b/test/exception_test.cpp index 641ff80..438f68d 100644 --- a/test/exception_test.cpp +++ b/test/exception_test.cpp @@ -189,10 +189,10 @@ void test_multiple_occurrences_with_different_names() } catch (multiple_occurrences& e) { - 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")); BOOST_CHECK( (string(e.what()) == "option '--cfgfile' cannot be specified more than once") || - (string(e.what()) == "option '--configfile' cannot be specified more than once") + (string(e.what()) == "option '--config-file' cannot be specified more than once") ); } }