Revert "problem: timeout on unit tests"

This commit is contained in:
a10zn8
2022-12-16 15:19:15 +04:00
committed by GitHub
parent 8c656ca28b
commit 214abc4722
2 changed files with 4 additions and 5 deletions

View File

@@ -92,7 +92,7 @@ class WsConnectionSpec extends Specification {
it.id.asNumber() == 15L && Global.objectMapper.readValue(it.result, TransactionJson) == tx
}
.expectComplete()
.verify(Duration.ofSeconds(1))
.verify(Duration.ofSeconds(5))
}
def "Makes a RPC call - return null"() {
@@ -115,7 +115,7 @@ class WsConnectionSpec extends Specification {
it.resultAsRawString == 'null'
}
.expectComplete()
.verify(Duration.ofSeconds(1))
.verify(Duration.ofSeconds(5))
}
def "Makes a RPC call - return error"() {
@@ -140,6 +140,6 @@ class WsConnectionSpec extends Specification {
it.error.code == RpcResponseError.CODE_METHOD_NOT_EXIST && it.error.message == "test"
}
.expectComplete()
.verify(Duration.ofSeconds(1))
.verify(Duration.ofSeconds(5))
}
}