Fix PacketWriterTest: Expect also InterruptedException

which is thrown in case the queue was shut down.
This commit is contained in:
Florian Schmaus 2019-05-08 15:19:48 +02:00
parent 32429bcb9c
commit 68b7eb26f3
1 changed files with 2 additions and 2 deletions

View File

@ -99,11 +99,11 @@ public class PacketWriterTest {
prematureUnblocked = true; prematureUnblocked = true;
} }
} }
catch (SmackException.NotConnectedException e) { catch (InterruptedException | SmackException.NotConnectedException e) {
// This is the exception we expect. // This is the exception we expect.
expectedThreadExceptionReference.set(e); expectedThreadExceptionReference.set(e);
} }
catch (BrokenBarrierException | InterruptedException e) { catch (BrokenBarrierException e) {
unexpectedThreadExceptionReference.set(e); unexpectedThreadExceptionReference.set(e);
} }