diff --git a/test/test_366_4.cpp b/test/test_366_4.cpp index 7f9f6b01..2eeed6b7 100644 --- a/test/test_366_4.cpp +++ b/test/test_366_4.cpp @@ -12,7 +12,7 @@ static void do_first_half() std::cout << "Doing first half of the work\n"; boost::this_thread::sleep_for( - boost::chrono::seconds( 10 ) ); + boost::chrono::hours( 1 ) ); std::cout << "First half of the work complete\n"; } @@ -22,7 +22,7 @@ static void do_second_half() std::cout << "Doing second half of the work\n"; boost::this_thread::sleep_for( - boost::chrono::seconds( 10 ) ); + boost::chrono::hours( 1 ) ); std::cout << "Second half of the work complete\n"; }