diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-02-01 11:20:53 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2018-02-01 11:20:53 +0100 |
commit | 3b2e51b8f290c9c8511a43a29c80844866a22845 (patch) | |
tree | 61c14b97cd3aa10166a0672943fdfa4a1c054838 /examples | |
parent | 77959860a02bd154a7cde796d1bfe44d53e94806 (diff) | |
download | sink-3b2e51b8f290c9c8511a43a29c80844866a22845.tar.gz sink-3b2e51b8f290c9c8511a43a29c80844866a22845.zip |
Check the right port
Diffstat (limited to 'examples')
-rw-r--r-- | examples/imapresource/tests/imapmailsyncbenchmark.cpp | 2 |
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 | ||