Skip to content

Commit 8d482c4

Browse files
committed
Ignore post test exception
1 parent 3d7691c commit 8d482c4

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/test/java/com/timgroup/statsd/NonBlockingStatsDClientTest.java

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,12 @@ public static void start() throws IOException {
2525

2626
@AfterClass
2727
public static void stop() throws Exception {
28-
client.stop();
29-
server.close();
28+
try {
29+
client.stop();
30+
server.close();
31+
} catch (java.io.IOException e) {
32+
return;
33+
}
3034
}
3135

3236
@After

0 commit comments

Comments
 (0)