From 5c93794d68865afc4ba4b76bad7b60860457eb45 Mon Sep 17 00:00:00 2001 From: cyborg1811m Date: Mon, 15 Jan 2024 11:52:00 +0100 Subject: [PATCH] corrected typo --- test/test_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_main.cpp b/test/test_main.cpp index 7ee19f7..51a4047 100644 --- a/test/test_main.cpp +++ b/test/test_main.cpp @@ -1011,7 +1011,7 @@ int main(int, char *[]) std::cout << "Test of constructor 'const_vector(InputIt first, InputIt last)': " << test_const_vector::test_constructor_iterator() << std::endl; std::cout << "Test of copy constructors: " << test_const_vector::test_constructor_copy() << std::endl; std::cout << "Test of move constructor: " << test_const_vector::test_constructor_move() << std::endl; - std::cout << "Test of move constructor: " << test_const_vector::test_operator_eq() << std::endl; + std::cout << "Test of operator=: " << test_const_vector::test_operator_eq() << std::endl; return 0; }