diff --git a/test/sequence/zip_view.cpp b/test/sequence/zip_view.cpp index 7f88f52a..8409711a 100644 --- a/test/sequence/zip_view.cpp +++ b/test/sequence/zip_view.cpp @@ -2,7 +2,7 @@ Copyright (c) 2001-2006 Joel de Guzman Copyright (c) 2006 Dan Marsden - Distributed under the Boost Software License, Version 1.0. (See accompanying + Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) ==============================================================================*/ #include @@ -58,8 +58,8 @@ int main() BOOST_STATIC_ASSERT((boost::fusion::result_of::distance::type, boost::fusion::result_of::end::type>::value == 2)); - BOOST_MPL_ASSERT((boost::is_same::type, vector >)); - BOOST_MPL_ASSERT((boost::is_same::type>::type, vector >)); + BOOST_MPL_ASSERT((boost::is_same::type, vector2 >)); + BOOST_MPL_ASSERT((boost::is_same::type>::type, vector2 >)); } { using namespace boost; diff --git a/test/sequence/zip_view2.cpp b/test/sequence/zip_view2.cpp index 8a07aa88..38075f07 100644 --- a/test/sequence/zip_view2.cpp +++ b/test/sequence/zip_view2.cpp @@ -2,7 +2,7 @@ Copyright (c) 2001-2006 Joel de Guzman Copyright (c) 2006 Dan Marsden - Distributed under the Boost Software License, Version 1.0. (See accompanying + Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) ==============================================================================*/ #include @@ -57,8 +57,8 @@ int main() BOOST_TEST(distance(begin(v), end(v)) == 2); BOOST_STATIC_ASSERT((boost::fusion::result_of::distance::type, boost::fusion::result_of::end::type>::value == 2)); - BOOST_MPL_ASSERT((boost::is_same::type, vector >)); - BOOST_MPL_ASSERT((boost::is_same::type>::type, vector >)); + BOOST_MPL_ASSERT((boost::is_same::type, vector3 >)); + BOOST_MPL_ASSERT((boost::is_same::type>::type, vector3 >)); } return boost::report_errors(); }