diff options
author | Frederik Gladhorn <frederik.gladhorn@nokia.com> | 2011-03-25 09:41:32 (GMT) |
---|---|---|
committer | Frederik Gladhorn <frederik.gladhorn@nokia.com> | 2011-03-25 10:13:02 (GMT) |
commit | 77cbbe9e47c62047ff88973d8158c42dc30fbd00 (patch) | |
tree | 448fc4c778acfe9060b1efcbbdeb19530fb8e3d6 /tests | |
parent | cdb5729d8e1ffc4a00b52d6d4bbee34a9820a193 (diff) | |
download | Qt-77cbbe9e47c62047ff88973d8158c42dc30fbd00.zip Qt-77cbbe9e47c62047ff88973d8158c42dc30fbd00.tar.gz Qt-77cbbe9e47c62047ff88973d8158c42dc30fbd00.tar.bz2 |
Fix autotest.
I changed a string by accident.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/qaccessibility/tst_qaccessibility.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qaccessibility/tst_qaccessibility.cpp b/tests/auto/qaccessibility/tst_qaccessibility.cpp index b8301be..7de0512 100644 --- a/tests/auto/qaccessibility/tst_qaccessibility.cpp +++ b/tests/auto/qaccessibility/tst_qaccessibility.cpp @@ -1949,7 +1949,7 @@ void tst_QAccessibility::buttonTest() // currently our buttons only have click as action, press and release are missing QCOMPARE(actionInterface->actionCount(), 1); - QCOMPARE(actionInterface->name(0), QString("Click")); + QCOMPARE(actionInterface->name(0), QString("Press")); QCOMPARE(pushButton.clickCount, 0); actionInterface->doAction(0); QTest::qWait(500); |