ARTEMIS-3309 Fixing QueueControlUsingCoreTest
This commit is contained in:
parent
f6df6083e3
commit
4de9e887f6
|
@ -458,7 +458,7 @@ public class QueueControlUsingCoreTest extends QueueControlTest {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int moveMessages(int flushLimit, String filter, String otherQueueName, boolean rejectDuplicates, int messageCount) throws Exception {
|
public int moveMessages(int flushLimit, String filter, String otherQueueName, boolean rejectDuplicates, int messageCount) throws Exception {
|
||||||
return (Integer) proxy.invokeOperation("moveMessages", flushLimit, filter, otherQueueName, rejectDuplicates, messageCount);
|
return (Integer) proxy.invokeOperation(Integer.class, "moveMessages", flushLimit, filter, otherQueueName, rejectDuplicates, messageCount);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue