aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorDaniel Teske <daniel.teske@nokia.com>2012-04-13 13:13:04 +0200
committerhjk <qthjk@ovi.com>2012-04-13 14:57:27 +0200
commitaa1d7b25e1f76110d6fd5bc225b26e4ac12e0c79 (patch)
treeb48f3c390a97a7bb13a6070e6600044189c27983 /tests
parent49ab5e51fdd4cf9472e5a2ba199e110d46f0e933 (diff)
Debugger simple test case testQDateTime
Make the changes in the L&W more apparent and also add a comment to step Change-Id: I17fca560558fc266f8030c52f87fc81661f9fd02 Reviewed-by: hjk <qthjk@ovi.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/manual/debugger/simple/simple_test_app.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/manual/debugger/simple/simple_test_app.cpp b/tests/manual/debugger/simple/simple_test_app.cpp
index 380c8c2573..941823f6c4 100644
--- a/tests/manual/debugger/simple/simple_test_app.cpp
+++ b/tests/manual/debugger/simple/simple_test_app.cpp
@@ -674,9 +674,10 @@ namespace qdatetime {
// Check date.toUTC QDateTime.
// Continue.
+ // Step, check display
date = QDateTime::currentDateTime();
- date = date.addSecs(5);
- date = date.addSecs(5);
+ date = date.addDays(5);
+ date = date.addDays(5);
dummyStatement(&date);
}