summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMÃ¥rten Nordheim <marten.nordheim@qt.io>2020-05-08 11:12:40 +0200
committerJukka Jokiniva <jukka.jokiniva@qt.io>2020-05-15 11:21:56 +0000
commit1219d1716d751a0d60d4d45f916e76d7a4b48957 (patch)
treedf5ea397615aaacc941e62859db2f32725f6c0ab
parenta1508b27358e2fb5437358dd189ad0fc6401ad34 (diff)
Add one missed QSKIP for unreachable host5.14
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: Jani Heikkinen <jani.heikkinen@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 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");
}
}