summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2018-02-01 11:20:53 +0100
committerChristian Mollekopf <chrigi_1@fastmail.fm>2018-02-01 11:20:53 +0100
commit3b2e51b8f290c9c8511a43a29c80844866a22845 (patch)
tree61c14b97cd3aa10166a0672943fdfa4a1c054838 /examples
parent77959860a02bd154a7cde796d1bfe44d53e94806 (diff)
downloadsink-3b2e51b8f290c9c8511a43a29c80844866a22845.tar.gz
sink-3b2e51b8f290c9c8511a43a29c80844866a22845.zip
Check the right port
Diffstat (limited to 'examples')
-rw-r--r--examples/imapresource/tests/imapmailsyncbenchmark.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/imapresource/tests/imapmailsyncbenchmark.cpp b/examples/imapresource/tests/imapmailsyncbenchmark.cpp
index 5f16518..0720951 100644
--- a/examples/imapresource/tests/imapmailsyncbenchmark.cpp
+++ b/examples/imapresource/tests/imapmailsyncbenchmark.cpp
@@ -47,7 +47,7 @@ class ImapMailSyncBenchmark : public QObject
47 bool isBackendAvailable() 47 bool isBackendAvailable()
48 { 48 {
49 QTcpSocket socket; 49 QTcpSocket socket;
50 socket.connectToHost("localhost", 993); 50 socket.connectToHost("localhost", 143);
51 return socket.waitForConnected(200); 51 return socket.waitForConnected(200);
52 } 52 }
53 53