Fixing name on JDBC tests

This commit is contained in:
Clebert Suconic 2016-01-27 14:23:30 -05:00
parent 4d239ac803
commit 4a20187ff2
3 changed files with 3 additions and 3 deletions

View File

@ -82,7 +82,7 @@ public class BasicXaRecoveryTest extends ActiveMQTestBase {
this.storeType = storeType;
}
@Parameterized.Parameters(name = "storeType")
@Parameterized.Parameters(name = "storeType={0}")
public static Collection<Object[]> data() {
Object[][] params = new Object[][] {{StoreConfiguration.StoreType.FILE}, {StoreConfiguration.StoreType.DATABASE}};
return Arrays.asList(params);

View File

@ -75,7 +75,7 @@ public class BasicXaTest extends ActiveMQTestBase {
this.storeType = storeType;
}
@Parameterized.Parameters(name = "storeType")
@Parameterized.Parameters(name = "storeType={0}")
public static Collection<Object[]> data() {
Object[][] params = new Object[][] {{StoreConfiguration.StoreType.FILE}, {StoreConfiguration.StoreType.DATABASE}};
return Arrays.asList(params);

View File

@ -85,7 +85,7 @@ public class XaTimeoutTest extends ActiveMQTestBase {
this.storeType = storeType;
}
@Parameterized.Parameters(name = "storeType")
@Parameterized.Parameters(name = "storeType={0}")
public static Collection<Object[]> data() {
Object[][] params = new Object[][] {{StoreConfiguration.StoreType.FILE}, {StoreConfiguration.StoreType.DATABASE}};
return Arrays.asList(params);