Fix integration-tests: Arrays.toString(..) and ignored AssertionError
This commit is contained in:
parent
27dd5c2652
commit
7ca05753bf
|
@ -235,8 +235,9 @@ public class LargeMessageTest extends LargeMessageTestBase
|
||||||
msg1.getBodyBuffer().readByte();
|
msg1.getBodyBuffer().readByte();
|
||||||
Assert.fail("Exception was expected");
|
Assert.fail("Exception was expected");
|
||||||
}
|
}
|
||||||
catch (Throwable ignored)
|
catch (final Exception ignored)
|
||||||
{
|
{
|
||||||
|
// empty on purpose
|
||||||
}
|
}
|
||||||
|
|
||||||
session.close();
|
session.close();
|
||||||
|
|
|
@ -391,7 +391,7 @@ public class DiscoveryTest extends DiscoveryBaseTest
|
||||||
|
|
||||||
byte[] btreceived = client.receiveBroadcast(5, TimeUnit.SECONDS);
|
byte[] btreceived = client.receiveBroadcast(5, TimeUnit.SECONDS);
|
||||||
|
|
||||||
System.out.println("BTReceived = " + btreceived);
|
System.out.println("BTReceived = " + Arrays.toString(btreceived));
|
||||||
|
|
||||||
assertNotNull(btreceived);
|
assertNotNull(btreceived);
|
||||||
|
|
||||||
|
|
|
@ -16,6 +16,7 @@
|
||||||
*/
|
*/
|
||||||
package org.apache.activemq.artemis.tests.integration.management;
|
package org.apache.activemq.artemis.tests.integration.management;
|
||||||
|
|
||||||
|
import java.util.Arrays;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
|
@ -193,12 +194,12 @@ public class ManagementHelperTest extends Assert
|
||||||
String key1 = RandomUtil.randomString();
|
String key1 = RandomUtil.randomString();
|
||||||
String[] val1 = new String[]{"a", "b", "c"};
|
String[] val1 = new String[]{"a", "b", "c"};
|
||||||
|
|
||||||
ManagementHelperTest.log.info("val1 type is " + val1);
|
ManagementHelperTest.log.info("val1 type is " + Arrays.toString(val1));
|
||||||
|
|
||||||
String key2 = RandomUtil.randomString();
|
String key2 = RandomUtil.randomString();
|
||||||
Integer[] val2 = new Integer[]{1, 2, 3, 4, 5};
|
Integer[] val2 = new Integer[]{1, 2, 3, 4, 5};
|
||||||
|
|
||||||
ManagementHelperTest.log.info("val2 type is " + val2);
|
ManagementHelperTest.log.info("val2 type is " + Arrays.toString(val2));
|
||||||
|
|
||||||
map.put(key1, val1);
|
map.put(key1, val1);
|
||||||
map.put(key2, val2);
|
map.put(key2, val2);
|
||||||
|
|
Loading…
Reference in New Issue