We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a98393c + 7388a9b commit 3353edaCopy full SHA for 3353eda
test/src/com/rabbitmq/client/test/functional/DurableOnTransient.java
@@ -68,14 +68,11 @@ protected void releaseResources() throws IOException {
68
channel.exchangeDelete(X);
69
}
70
71
- public void testBind()
+ public void testBindDurableToTransient()
72
throws IOException
73
{
74
- try {
75
- channel.queueBind(Q, X, "");
76
- fail("Expected exception from queueBind");
77
- } catch (IOException ee) {
78
- // Pass!
79
- }
+ channel.queueBind(Q, X, "");
+ basicPublish();
+ assertNotNull(basicGet());
80
81
0 commit comments