Skip to content

Commit

Permalink
Revert "Bump verification width to 4 (#146)" (#148)
Browse files Browse the repository at this point in the history
This reverts commit 4ab918a.
  • Loading branch information
jackkleeman authored Jun 16, 2023
1 parent fe2d609 commit 7500361
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions tests/src/test/kotlin/dev/restate/e2e/node/VerificationTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ class VerificationTest {
}
}

@Timeout(value = 2, unit = TimeUnit.MINUTES)
@Timeout(value = 1, unit = TimeUnit.MINUTES)
@Test
fun simple(@InjectBlockingStub verifier: CommandVerifierBlockingStub) {
val testParams = testParams()
Expand All @@ -72,7 +72,7 @@ class VerificationTest {
verifier.clear(VerifierProto.ClearRequest.newBuilder().setParams(testParams).build())
}

@Timeout(value = 2, unit = TimeUnit.MINUTES)
@Timeout(value = 1, unit = TimeUnit.MINUTES)
@Test
fun killingTheServiceEndpoint(
@InjectBlockingStub verifier: CommandVerifierBlockingStub,
Expand All @@ -92,7 +92,7 @@ class VerificationTest {
verifier.clear(VerifierProto.ClearRequest.newBuilder().setParams(testParams).build())
}

@Timeout(value = 2, unit = TimeUnit.MINUTES)
@Timeout(value = 1, unit = TimeUnit.MINUTES)
@Test
fun stoppingTheServiceEndpoint(
@InjectBlockingStub verifier: CommandVerifierBlockingStub,
Expand All @@ -112,7 +112,7 @@ class VerificationTest {
verifier.clear(VerifierProto.ClearRequest.newBuilder().setParams(testParams).build())
}

@Timeout(value = 2, unit = TimeUnit.MINUTES)
@Timeout(value = 1, unit = TimeUnit.MINUTES)
@Test
fun killingTheRuntime(
@InjectBlockingStub verifier: CommandVerifierBlockingStub,
Expand All @@ -131,7 +131,7 @@ class VerificationTest {
verifier.clear(VerifierProto.ClearRequest.newBuilder().setParams(testParams).build())
}

@Timeout(value = 2, unit = TimeUnit.MINUTES)
@Timeout(value = 1, unit = TimeUnit.MINUTES)
@Test
fun stoppingTheRuntime(
@InjectBlockingStub verifier: CommandVerifierBlockingStub,
Expand Down Expand Up @@ -159,7 +159,7 @@ class VerificationTest {
logger.info("Using seed {}", seed)
return TestParams.newBuilder()
.setSeed(seed)
.setWidth(4)
.setWidth(3)
.setDepth(14)
.setMaxSleepMillis(5.seconds.inWholeMilliseconds.toInt())
.build()
Expand Down

0 comments on commit 7500361

Please sign in to comment.