┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/tests/kitemlistselectionmanagertest.cpp
diff options
context:
space:
mode:
authorEmmanuel Pescosta <[email protected]>2013-01-14 20:01:03 +0100
committerEmmanuel Pescosta <[email protected]>2013-01-14 20:01:03 +0100
commit256792355d01485eb148f8fb50f92e1c276cb769 (patch)
tree314ccae77ef59e9990359cccce5c69e1ec7da552 /src/tests/kitemlistselectionmanagertest.cpp
parentdde672ac944af64d09cbd90dffc3d513ffe0c2b7 (diff)
Select right item as current item (first item after the deletion) after deleting files
BUG: 290736 REVIEW: 108356 FIXED-IN: 4.10
Diffstat (limited to 'src/tests/kitemlistselectionmanagertest.cpp')
-rw-r--r--src/tests/kitemlistselectionmanagertest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/kitemlistselectionmanagertest.cpp b/src/tests/kitemlistselectionmanagertest.cpp
index 3a8400930..302985a5f 100644
--- a/src/tests/kitemlistselectionmanagertest.cpp
+++ b/src/tests/kitemlistselectionmanagertest.cpp
@@ -499,7 +499,7 @@ void KItemListSelectionManagerTest::testDeleteCurrentItem_data()
QTest::newRow("Remove before") << 50 << 0 << 10 << 40;
QTest::newRow("Remove after") << 50 << 51 << 10 << 50;
QTest::newRow("Remove exactly current item") << 50 << 50 << 1 << 50;
- QTest::newRow("Remove around current item") << 50 << 45 << 10 << 50;
+ QTest::newRow("Remove around current item") << 50 << 45 << 10 << 45;
QTest::newRow("Remove all except one item") << 50 << 1 << 99 << 0;
}