summaryrefslogtreecommitdiffstats
path: root/tests/auto/corelib/concurrent
diff options
context:
space:
mode:
authorJason McDonald <jason.mcdonald@nokia.com>2011-12-29 11:53:54 +1000
committerQt by Nokia <qt-info@nokia.com>2011-12-30 02:07:50 +0100
commitfb83806138ed8fc86aed4a0ad9747f8a47f10088 (patch)
tree42c4aadc7256b7e6a5edd1b7610eadb2c20bdfd3 /tests/auto/corelib/concurrent
parent0372d5bf0d0702e7610d265532109aa6cbfd792c (diff)
Correct misspelt function names in QFutureWatcher test.
Change-Id: I60965f3475f83a7c42d2efc6ed8adf9a1403e144 Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Diffstat (limited to 'tests/auto/corelib/concurrent')
-rw-r--r--tests/auto/corelib/concurrent/qfuturewatcher/tst_qfuturewatcher.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/auto/corelib/concurrent/qfuturewatcher/tst_qfuturewatcher.cpp b/tests/auto/corelib/concurrent/qfuturewatcher/tst_qfuturewatcher.cpp
index ca0816eca1..8cd77b88f7 100644
--- a/tests/auto/corelib/concurrent/qfuturewatcher/tst_qfuturewatcher.cpp
+++ b/tests/auto/corelib/concurrent/qfuturewatcher/tst_qfuturewatcher.cpp
@@ -67,7 +67,7 @@ private slots:
void watchFinishedFuture();
void watchCanceledFuture();
void disconnectRunningFuture();
- void toMuchProgress();
+ void tooMuchProgress();
void progressText();
void sharedFutureInterface();
void changeFuture();
@@ -77,7 +77,7 @@ private slots:
void throttling();
void incrementalMapResults();
void incrementalFilterResults();
- void qfutureSynchornizer();
+ void qfutureSynchronizer();
void warnRace();
};
@@ -476,7 +476,7 @@ public:
}
};
-void tst_QFutureWatcher::toMuchProgress()
+void tst_QFutureWatcher::tooMuchProgress()
{
progressValues.clear();
ProgressObject o;
@@ -891,7 +891,7 @@ void tst_QFutureWatcher::incrementalFilterResults()
future.waitForFinished();
}
-void tst_QFutureWatcher::qfutureSynchornizer()
+void tst_QFutureWatcher::qfutureSynchronizer()
{
int taskCount = 1000;
QTime t;