Skip to content

Commit 5de5971

Browse files
author
BaierD
committed
Format TimeoutTest
1 parent 28d5648 commit 5de5971

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/org/sosy_lab/java_smt/test/TimeoutTest.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,7 @@ public void testProverInterruptWithSubsequentNewProverUsageInt()
141141

142142
// Test shutdown of context-wide shutdown manager. No prover should be usable afterward!
143143
@Test(timeout = TIMEOUT_MILLISECONDS)
144-
public void testContextInterruptWithSubsequentNewProverUsageBv()
145-
throws InterruptedException {
144+
public void testContextInterruptWithSubsequentNewProverUsageBv() throws InterruptedException {
146145
requireBitvectors();
147146

148147
testBasicContextTimeoutBv(() -> context.newProverEnvironment());
@@ -157,8 +156,7 @@ public void testContextInterruptWithSubsequentNewProverUsageBv()
157156

158157
// Test shutdown of context-wide shutdown manager. No prover should be usable afterward!
159158
@Test(timeout = TIMEOUT_MILLISECONDS)
160-
public void testContextInterruptWithSubsequentNewProverUsageInt()
161-
throws InterruptedException {
159+
public void testContextInterruptWithSubsequentNewProverUsageInt() throws InterruptedException {
162160
requireIntegers();
163161

164162
testBasicContextTimeoutInt(() -> context.newProverEnvironment());
@@ -247,6 +245,7 @@ public void testProverInterruptWithSubsequentFeatureUsageBv() throws Interrupted
247245

248246
testBasicProverTimeoutWithFeatureUsageBv(() -> context.newProverEnvironment());
249247
assertThat(shutdownManager.getNotifier().shouldShutdown()).isTrue();
248+
250249
try {
251250
assertThat(pe1.getShutdownManagerForProver().getNotifier().shouldShutdown()).isTrue();
252251
assertThat(pe2.getShutdownManagerForProver().getNotifier().shouldShutdown()).isTrue();

0 commit comments

Comments
 (0)