diff --git a/3party/opening_hours/opening_hours_tests/opening_hours_tests.cpp b/3party/opening_hours/opening_hours_tests/opening_hours_tests.cpp index be3652569e..8956ab7596 100644 --- a/3party/opening_hours/opening_hours_tests/opening_hours_tests.cpp +++ b/3party/opening_hours/opening_hours_tests/opening_hours_tests.cpp @@ -126,32 +126,6 @@ bool IsUnknown(osmoh::TRuleSequences const & rules, std::string const & dateTime } } // namespace - -BOOST_AUTO_TEST_CASE(OpeningHours_Locale) -{ - namespace charset = boost::spirit::standard_wide; - namespace qi = boost::spirit::qi; - - class Alltime : public qi::symbols - { - public: - Alltime() - { - add - (L"пн")(L"uu")(L"œæ") - ; - } - } alltime; - - std::locale loc("en_US"); - std::locale prev = std::locale::global(loc); - - BOOST_CHECK(Test("TeSt", charset::no_case[qi::lit("test")])); - BOOST_CHECK(Test("UU", charset::no_case[alltime])); - - std::locale::global(prev); -} - BOOST_AUTO_TEST_CASE(OpeningHours_TestTime) { using namespace osmoh;