diff --git a/tests/manual/debugger/simple/simple_test_app.cpp b/tests/manual/debugger/simple/simple_test_app.cpp index f0938f785277591431bcb748780b0ef9920657f1..d1ad44d79daf1e7c6c7914c5d2197a97887385c8 100644 --- a/tests/manual/debugger/simple/simple_test_app.cpp +++ b/tests/manual/debugger/simple/simple_test_app.cpp @@ -5011,15 +5011,15 @@ namespace boost { using namespace posix_time; time_duration d1(1, 0, 0); BREAK_HERE; - // Check p1 01:00:00 boost::posix_time::time_duration. + // Check d1 01:00:00 boost::posix_time::time_duration. // Continue. time_duration d2(0, 1, 0); BREAK_HERE; - // Check d1 00:00:01 boost::posix_time::time_duration. + // Check d2 00:01:00 boost::posix_time::time_duration. // Continue. time_duration d3(0, 0, 1); BREAK_HERE; - // Check d1 00:00:01 boost::posix_time::time_duration. + // Check d3 00:00:01 boost::posix_time::time_duration. // Continue. dummyStatement(&d1, &d2, &d3); } @@ -5035,11 +5035,11 @@ namespace boost { // Continue. ptime p2(date(2002, 1, 10), time_duration(0, 0, 0)); BREAK_HERE; - // Check p1 Thu Jan 10 00:00:00 2002 boost::posix_time::ptime. + // Check p2 Thu Jan 10 00:00:00 2002 boost::posix_time::ptime. // Continue. ptime p3(date(1970, 1, 1), time_duration(0, 0, 0)); BREAK_HERE; - // Check p1 Thu Jan 1 00:00:00 1970 boost::posix_time::ptime. + // Check p3 Thu Jan 1 00:00:00 1970 boost::posix_time::ptime. // Continue. dummyStatement(&p1, &p2, &p3); }