summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMårten Nordheim <[email protected]>2020-05-08 11:12:40 +0200
committerJukka Jokiniva <[email protected]>2020-05-15 07:17:27 +0000
commita437a24dea35d5027e511e5013c65efe477ba96a (patch)
treedf5ea397615aaacc941e62859db2f32725f6c0ab
parent9f3cdb9e3ece4194af1b374dfde67ce807934325 (diff)
Add one missed QSKIP for unreachable host5.14.2
And fix the typo for the others Fixes: QTBUG-84071 Pick-to: 5.15 Change-Id: I0ec87f8c82cd2863b3d62ea1c9628657f7471872 Reviewed-by: Liang Qi <[email protected]> Reviewed-by: Jesus Fernandez <[email protected]> (cherry picked from commit 22fd06a3cb2e96db0afb9666016280b1feb7c8b7) Reviewed-by: Mårten Nordheim <[email protected]> (cherry picked from commit 8e6e45b990a0ad9bc0d43f1f5387d34a212441bd) Reviewed-by: Jani Heikkinen <[email protected]>
-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 c76ba8f..bce7007 100644
--- a/tests/auto/oauth1/tst_oauth1.cpp
+++ b/tests/auto/oauth1/tst_oauth1.cpp
@@ -636,6 +636,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");
}
}
@@ -740,7 +742,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");
}
}
@@ -835,7 +837,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");
}
}