Skip to content

Commit bb3e47d

Browse files
author
Matthias Radestock
committed
'mandatory' and 'immediate' are now carried through to UMEs
1 parent e6e0fa5 commit bb3e47d

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

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

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -148,15 +148,9 @@ public void testUme() throws IOException {
148148
//ordinary
149149
check(k, false);
150150
//mandatory
151-
check(k, true, false, !k.equals("x"));
151+
check(k, true, false, k.equals("z"));
152152
//immediate
153-
check(k, false, true, k.equals("x") ? unrouted : expected(k), true);
154-
/*
155-
if (k.equals("x"))
156-
check(k, false, true, unrouted, true);
157-
else
158-
check(k, false, true, true);
159-
*/
153+
check(k, false, true, unrouted, true);
160154
}
161155

162156
//tx

0 commit comments

Comments
 (0)