Skip to content

Commit 5f5d75c

Browse files
committed
Fix unit tests for threadly 5.25 argument verification
A timeout of zero does not make sense, conceptually it should cancel the future immediately.
1 parent 18340ce commit 5f5d75c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/java/org/threadly/litesockets/SSLProcessorTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ public void setConnectionTimeout(int timeout) {
262262

263263
@Override
264264
public int getTimeout() {
265-
return 0;
265+
return 10;
266266
}
267267

268268
@Override

0 commit comments

Comments
 (0)