From 1de55fceda1829fa3b29fcfd4efe8f94de0a01d1 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sat, 14 May 2022 17:26:50 +0300 Subject: [PATCH] Fix test_366_4.cpp --- test/test_366_4.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"; }