summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMårten Nordheim <marten.nordheim@qt.io>2020-05-08 11:12:40 +0200
committerJani Heikkinen <jani.heikkinen@qt.io>2020-05-08 11:50:11 +0000
commit8e6e45b990a0ad9bc0d43f1f5387d34a212441bd (patch)
tree3e19793770fd7f84ea86ee79c65d99ade1af2fa8
parent6ad275b1eb35c4e9d75e217adaad4f5101a3bb28 (diff)
Add one missed QSKIP for unreachable hostv5.15.0-rc2v5.15.0
And fix the typo for the others Fixes: QTBUG-84071 Pick-to: 5.15 Change-Id: I0ec87f8c82cd2863b3d62ea1c9628657f7471872 Reviewed-by: Liang Qi <liang.qi@qt.io> Reviewed-by: Jesus Fernandez <jsfdez@gmail.com> (cherry picked from commit 22fd06a3cb2e96db0afb9666016280b1feb7c8b7) Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
-rw-r--r--tests/auto/oauth1/tst_oauth1.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/auto/oauth1/tst_oauth1.cpp b/tests/auto/oauth1/tst_oauth1.cpp
index ad4d976..737f196 100644
--- a/tests/auto/oauth1/tst_oauth1.cpp
+++ b/tests/auto/oauth1/tst_oauth1.cpp
@@ -639,6 +639,8 @@ void tst_OAuth1::grant_data()
<< QUrl("http://term.ie/oauth/example/access_token.php")
<< QUrl("http://term.ie/oauth/example/echo_api.php")
<< QNetworkAccessManager::PostOperation;
+ } else {
+ QSKIP("Skipping test due to unreachable term.ie host");
}
}
@@ -743,7 +745,7 @@ void tst_OAuth1::authenticatedCalls_data()
<< parameters
<< QNetworkAccessManager::GetOperation;
} else {
- QSKIP("Skipping test due to unreacahble term.ie host");
+ QSKIP("Skipping test due to unreachable term.ie host");
}
}
@@ -838,7 +840,7 @@ void tst_OAuth1::prepareRequestCalls_data()
<< parameters
<< QByteArray("GET");
} else {
- QSKIP("Skipping test due to unreacahble term.ie host");
+ QSKIP("Skipping test due to unreachable term.ie host");
}
}