summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJuha Vuolle <juha.vuolle@qt.io>2023-06-16 09:47:58 +0300
committerJuha Vuolle <juha.vuolle@qt.io>2023-06-22 15:05:44 +0300
commit6e92e1378eaa2db18dca1c2ddeef5ec7b84f49c2 (patch)
tree8f639ca8fac164017df42f814a670c30c105d1e0 /tests
parentb9fb7c2f929a37a92cd51eb4e4a585f5a31cf0b2 (diff)
Rename tokenRequestError signal to tokenRequestErrorOccurred
To be better in line with the other signals (that is, end the signal name with a 'verb'). Amends: 32f29d3e227da206f262efa055d1cac895855a98 Pick-to: 6.6 Change-Id: I8f76d526b124842d0982e74af0dc76d8bdc46f37 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io> Reviewed-by: MÃ¥rten Nordheim <marten.nordheim@qt.io> Reviewed-by: Ivan Solovev <ivan.solovev@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/oauth2/tst_oauth2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/oauth2/tst_oauth2.cpp b/tests/auto/oauth2/tst_oauth2.cpp
index 992817c..2cfabec 100644
--- a/tests/auto/oauth2/tst_oauth2.cpp
+++ b/tests/auto/oauth2/tst_oauth2.cpp
@@ -55,7 +55,7 @@ struct ReplyHandler : QAbstractOAuthReplyHandler
if (aTokenRequestError == QAbstractOAuth::Error::NoError)
emit tokensReceived(data);
else
- emit tokenRequestError(aTokenRequestError, "a token request error");
+ emit tokenRequestErrorOccurred(aTokenRequestError, "a token request error");
}
void emitCallbackReceived(const QVariantMap &data)