Skip to content

Commit 22768dc

Browse files
committed
check for (new) correct error code
1 parent 818a082 commit 22768dc

File tree

1 file changed

+1
-1
lines changed
  • test/src/com/rabbitmq/client/test/functional

1 file changed

+1
-1
lines changed

test/src/com/rabbitmq/client/test/functional/Reject.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public void testReject()
7878
channel.basicQos(0); //some synchronous command
7979
fail();
8080
} catch (IOException ioe) {
81-
checkShutdownSignal(AMQP.NOT_FOUND, ioe);
81+
checkShutdownSignal(AMQP.PRECONDITION_FAILED, ioe);
8282
}
8383
}
8484
}

0 commit comments

Comments
 (0)