Skip to content

Commit 28d5648

Browse files
author
BaierD
committed
Remove unnecessary exceptions from test methods in TimeoutTest
1 parent ba6c2bc commit 28d5648

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ public void testProverInterruptWithSubsequentNewProverUsageInt()
142142
// Test shutdown of context-wide shutdown manager. No prover should be usable afterward!
143143
@Test(timeout = TIMEOUT_MILLISECONDS)
144144
public void testContextInterruptWithSubsequentNewProverUsageBv()
145-
throws InterruptedException, SolverException {
145+
throws InterruptedException {
146146
requireBitvectors();
147147

148148
testBasicContextTimeoutBv(() -> context.newProverEnvironment());
@@ -158,7 +158,7 @@ public void testContextInterruptWithSubsequentNewProverUsageBv()
158158
// Test shutdown of context-wide shutdown manager. No prover should be usable afterward!
159159
@Test(timeout = TIMEOUT_MILLISECONDS)
160160
public void testContextInterruptWithSubsequentNewProverUsageInt()
161-
throws InterruptedException, SolverException {
161+
throws InterruptedException {
162162
requireIntegers();
163163

164164
testBasicContextTimeoutInt(() -> context.newProverEnvironment());

0 commit comments

Comments
 (0)