From aee8a3ac882bef0b8796c41f998fe534c3ccbfda Mon Sep 17 00:00:00 2001
From: Orgad Shaneh <orgads@gmail.com>
Date: Sun, 22 Jan 2012 20:54:13 +0200
Subject: [PATCH] debugger: fix copy-and-pasteo

Change-Id: I99923f9c2a06e8ef3bdb070419b4a19af0ddfa90
Reviewed-by: hjk <qthjk@ovi.com>
---
 tests/manual/debugger/simple/simple_test_app.cpp | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/tests/manual/debugger/simple/simple_test_app.cpp b/tests/manual/debugger/simple/simple_test_app.cpp
index f0938f78527..d1ad44d79da 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);
     }
-- 
GitLab