diff options
author | Markus Goetz <Markus.Goetz@nokia.com> | 2010-03-04 12:20:06 (GMT) |
---|---|---|
committer | Markus Goetz <Markus.Goetz@nokia.com> | 2010-03-04 12:20:06 (GMT) |
commit | d644fcf668203a6d2f4af8fee350c672196ad11b (patch) | |
tree | 37695b5f833efd3db2a6a3075e55cef3e0aeae02 | |
parent | 8327f68945134b8057b0ade7d19897e226d3a7b5 (diff) | |
download | Qt-d644fcf668203a6d2f4af8fee350c672196ad11b.zip Qt-d644fcf668203a6d2f4af8fee350c672196ad11b.tar.gz Qt-d644fcf668203a6d2f4af8fee350c672196ad11b.tar.bz2 |
tst_qftp: Do not use 1.2.3.4 as IP
Believe it or not, that IP is reachable on port 21.
Reviewed-by: TrustMe
-rw-r--r-- | tests/auto/qftp/tst_qftp.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qftp/tst_qftp.cpp b/tests/auto/qftp/tst_qftp.cpp index 240885d..638c810 100644 --- a/tests/auto/qftp/tst_qftp.cpp +++ b/tests/auto/qftp/tst_qftp.cpp @@ -308,7 +308,7 @@ void tst_QFtp::connectToUnresponsiveHost() if (setProxy) QSKIP( "This test takes too long if we test with proxies too", SkipSingle ); - QString host = "1.2.3.4"; + QString host = "192.0.2.42"; // IP out of TEST-NET, should be unreachable uint port = 21; ftp = newFtp(); |