summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorChristian Mollekopf <chrigi_1@fastmail.fm>2018-07-13 15:14:32 +0200
committerChristian Mollekopf <chrigi_1@fastmail.fm>2018-07-13 15:15:31 +0200
commit4b0b2abf9c9b2d57f79388064ccc95888c1cb039 (patch)
tree9799a2a30d7a1499ec828928d8718162527569e7 /examples
parenta5dcda0672a0a52da8190032dd12df4780db4bbb (diff)
downloadsink-4b0b2abf9c9b2d57f79388064ccc95888c1cb039.tar.gz
sink-4b0b2abf9c9b2d57f79388064ccc95888c1cb039.zip
Increase timeout to 5s also in tests.
The tests seem to be simply to slow right now, so let's bump this to avoid flaky tests.
Diffstat (limited to 'examples')
-rw-r--r--examples/imapresource/imapserverproxy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/imapresource/imapserverproxy.cpp b/examples/imapresource/imapserverproxy.cpp
index 918a21a..4c02f7c 100644
--- a/examples/imapresource/imapserverproxy.cpp
+++ b/examples/imapresource/imapserverproxy.cpp
@@ -132,7 +132,7 @@ static KAsync::Job<void> runJob(KJob *job)
132static int socketTimeout() 132static int socketTimeout()
133{ 133{
134 if (Sink::Test::testModeEnabled()) { 134 if (Sink::Test::testModeEnabled()) {
135 return 1; 135 return 5;
136 } 136 }
137 return 40; 137 return 40;
138} 138}