diff --git a/test/small_vector_test.cpp b/test/small_vector_test.cpp index bd15590..952dbc8 100644 --- a/test/small_vector_test.cpp +++ b/test/small_vector_test.cpp @@ -211,7 +211,7 @@ int main() //////////////////////////////////// // Default init test //////////////////////////////////// - if(!test::default_init_test< vector > >()){ + if(!test::default_init_test< small_vector > >()){ std::cerr << "Default init test failed" << std::endl; return 1; } @@ -220,7 +220,7 @@ int main() // Emplace testing //////////////////////////////////// const test::EmplaceOptions Options = (test::EmplaceOptions)(test::EMPLACE_BACK | test::EMPLACE_BEFORE); - if(!boost::container::test::test_emplace< vector, Options>()){ + if(!boost::container::test::test_emplace< small_vector, Options>()){ return 1; }