diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2012-07-20 09:55:24 +0200 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2012-07-20 09:55:24 +0200 |
| commit | a609100c2a0eb19ef4b9c7a571366281ca722ac8 (patch) | |
| tree | ed242c44acd8cf1f100aff705d569ab83e8e1b1e /tests/sasl.cpp | |
| parent | 4d7cfe1ba7ce004b04c1bb2ead9db5792bb22f89 (diff) | |
| download | qxmpp-a609100c2a0eb19ef4b9c7a571366281ca722ac8.tar.gz | |
make QXmppSaslClient a QXmppLoggable
Diffstat (limited to 'tests/sasl.cpp')
| -rw-r--r-- | tests/sasl.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/sasl.cpp b/tests/sasl.cpp index 4a0b78f8..e2dd8486 100644 --- a/tests/sasl.cpp +++ b/tests/sasl.cpp @@ -43,7 +43,6 @@ void tst_QXmppSaslClient::testAnonymous() QCOMPARE(response, QByteArray()); // any further step is an error - QTest::ignoreMessage(QtWarningMsg, "QXmppSaslClientAnonymous : Invalid step"); QVERIFY(!client->respond(QByteArray(), response)); delete client; @@ -83,7 +82,6 @@ void tst_QXmppSaslClient::testDigestMd5() QCOMPARE(response, QByteArray()); // any further step is an error - QTest::ignoreMessage(QtWarningMsg, "QXmppSaslClientDigestMd5 : Invalid step"); QVERIFY(!client->respond(QByteArray(), response)); delete client; @@ -108,7 +106,6 @@ void tst_QXmppSaslClient::testFacebook() QCOMPARE(response, QByteArray("access_token=123456789012345&api_key=abcdefghijlkmno&call_id=&method=auth.xmpp_login&nonce=AA4EFEE16F2AB64B131EEFFE6EACDDB8&v=1.0")); // any further step is an error - QTest::ignoreMessage(QtWarningMsg, "QXmppSaslClientFacebook : Invalid step"); QVERIFY(!client->respond(QByteArray(), response)); delete client; @@ -129,7 +126,6 @@ void tst_QXmppSaslClient::testPlain() QCOMPARE(response, QByteArray("\0foo\0bar", 8)); // any further step is an error - QTest::ignoreMessage(QtWarningMsg, "QXmppSaslClientPlain : Invalid step"); QVERIFY(!client->respond(QByteArray(), response)); delete client; |
