summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAleksandar Sasha Babic <aleksandar.babic@nokia.com>2009-08-20 06:53:10 (GMT)
committerAleksandar Sasha Babic <aleksandar.babic@nokia.com>2009-08-20 06:55:41 (GMT)
commitdbdeae0da8702379c1dabb11bfe8440438c1fd98 (patch)
tree800ae7efc529299ef1f96df378d23e9338d0b6bd /tests
parente15bb13513e1157094c42d014db906063d057230 (diff)
downloadQt-dbdeae0da8702379c1dabb11bfe8440438c1fd98.zip
Qt-dbdeae0da8702379c1dabb11bfe8440438c1fd98.tar.gz
Qt-dbdeae0da8702379c1dabb11bfe8440438c1fd98.tar.bz2
Removing unnecessary comments and enabling
additional test rows that were forgotten.
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qsslsocket/tst_qsslsocket.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/auto/qsslsocket/tst_qsslsocket.cpp b/tests/auto/qsslsocket/tst_qsslsocket.cpp
index 9c5086a..ba5ef70 100644
--- a/tests/auto/qsslsocket/tst_qsslsocket.cpp
+++ b/tests/auto/qsslsocket/tst_qsslsocket.cpp
@@ -249,13 +249,13 @@ void tst_QSslSocket::initTestCase_data()
QTest::addColumn<bool>("setProxy");
QTest::addColumn<int>("proxyType");
- //QTest::newRow("WithoutProxy") << false << 0;
+ QTest::newRow("WithoutProxy") << false << 0;
#ifdef TEST_QNETWORK_PROXY
QTest::newRow("WithSocks5Proxy") << true << int(Socks5Proxy);
- //QTest::newRow("WithSocks5ProxyAuth") << true << int(Socks5Proxy | AuthBasic);
+ QTest::newRow("WithSocks5ProxyAuth") << true << int(Socks5Proxy | AuthBasic);
- //QTest::newRow("WithHttpProxy") << true << int(HttpProxy);
- //QTest::newRow("WithHttpProxyBasicAuth") << true << int(HttpProxy | AuthBasic);
+ QTest::newRow("WithHttpProxy") << true << int(HttpProxy);
+ QTest::newRow("WithHttpProxyBasicAuth") << true << int(HttpProxy | AuthBasic);
// uncomment the line below when NTLM works
// QTest::newRow("WithHttpProxyNtlmAuth") << true << int(HttpProxy | AuthNtlm);
#endif