2727#include < ql/time/calendars/austria.hpp>
2828#include < ql/time/calendars/chile.hpp>
2929#include < ql/time/calendars/france.hpp>
30+ #include < ql/time/calendars/jointcalendar.hpp>
3031#include < ql/time/calendars/thailand.hpp>
3132#include < ql/time/daycounters/all.hpp>
3233#include < qle/calendars/colombia.hpp>
3334#include < qle/calendars/israel.hpp>
34- #include < qle/calendars/largejointcalendar.hpp>
3535#include < qle/calendars/malaysia.hpp>
3636#include < qle/calendars/netherlands.hpp>
3737#include < qle/calendars/peru.hpp>
@@ -927,7 +927,7 @@ BOOST_AUTO_TEST_CASE(testJointCalendar) {
927927 Calendar peru = QuantExt::Peru ();
928928
929929 cals.push_back (peru);
930- Calendar joint1 = QuantExt::LargeJointCalendar (cals);
930+ Calendar joint1 = QuantLib::JointCalendar (cals);
931931
932932 std::vector<Date> hol = joint1.holidayList (Date (1 , January, 2018 ), Date (31 , December, 2018 ));
933933 BOOST_CHECK (hol.size () == expectedHolidays.size ());
@@ -955,7 +955,7 @@ BOOST_AUTO_TEST_CASE(testJointCalendar) {
955955
956956 Calendar col = Colombia ();
957957 cals.push_back (col);
958- Calendar joint2 = QuantExt::LargeJointCalendar (cals);
958+ Calendar joint2 = QuantLib::JointCalendar (cals);
959959
960960 hol = joint2.holidayList (Date (1 , January, 2018 ), Date (31 , December, 2018 ));
961961 BOOST_CHECK (hol.size () == expectedHolidays.size ());
@@ -978,7 +978,7 @@ BOOST_AUTO_TEST_CASE(testJointCalendar) {
978978
979979 Calendar phil = Philippines ();
980980 cals.push_back (phil);
981- Calendar joint3 = QuantExt::LargeJointCalendar (cals);
981+ Calendar joint3 = QuantLib::JointCalendar (cals);
982982
983983 hol = joint3.holidayList (Date (1 , January, 2018 ), Date (31 , December, 2018 ));
984984 BOOST_CHECK (hol.size () == expectedHolidays.size ());
@@ -1004,7 +1004,7 @@ BOOST_AUTO_TEST_CASE(testJointCalendar) {
10041004
10051005 Calendar thai = Thailand ();
10061006 cals.push_back (thai);
1007- Calendar joint4 = QuantExt::LargeJointCalendar (cals);
1007+ Calendar joint4 = QuantLib::JointCalendar (cals);
10081008
10091009 hol = joint4.holidayList (Date (1 , January, 2018 ), Date (31 , December, 2018 ));
10101010 BOOST_CHECK (hol.size () == expectedHolidays.size ());
@@ -1020,7 +1020,7 @@ BOOST_AUTO_TEST_CASE(testJointCalendar) {
10201020
10211021 Calendar mal = Malaysia ();
10221022 cals.push_back (mal);
1023- Calendar joint5 = QuantExt::LargeJointCalendar (cals);
1023+ Calendar joint5 = QuantLib::JointCalendar (cals);
10241024
10251025 hol = joint5.holidayList (Date (1 , January, 2018 ), Date (31 , December, 2018 ));
10261026 BOOST_CHECK (hol.size () == expectedHolidays.size ());
@@ -1044,7 +1044,7 @@ BOOST_AUTO_TEST_CASE(testJointCalendar) {
10441044
10451045 Calendar chil = Chile ();
10461046 cals.push_back (chil);
1047- Calendar joint6 = QuantExt::LargeJointCalendar (cals);
1047+ Calendar joint6 = QuantLib::JointCalendar (cals);
10481048
10491049 hol = joint6.holidayList (Date (1 , January, 2018 ), Date (31 , December, 2018 ));
10501050 BOOST_CHECK (hol.size () == expectedHolidays.size ());
@@ -1062,7 +1062,7 @@ BOOST_AUTO_TEST_CASE(testJointCalendar) {
10621062
10631063 Calendar net = Netherlands ();
10641064 cals.push_back (net);
1065- Calendar joint7 = QuantExt::LargeJointCalendar (cals);
1065+ Calendar joint7 = QuantLib::JointCalendar (cals);
10661066
10671067 hol = joint7.holidayList (Date (1 , January, 2018 ), Date (31 , December, 2018 ));
10681068 BOOST_CHECK (hol.size () == expectedHolidays.size ());
@@ -1083,7 +1083,7 @@ BOOST_AUTO_TEST_CASE(testJointCalendar) {
10831083
10841084 Calendar fre = France ();
10851085 cals.push_back (fre);
1086- Calendar joint8 = QuantExt::LargeJointCalendar (cals);
1086+ Calendar joint8 = QuantLib::JointCalendar (cals);
10871087
10881088 hol = joint8.holidayList (Date (1 , January, 2018 ), Date (31 , December, 2018 ));
10891089 BOOST_CHECK (hol.size () == expectedHolidays.size ());
0 commit comments