1
0

[HUDI-290] Normalize test class name of all test classes (#951)

This commit is contained in:
vinoth chandar
2019-10-22 20:19:11 -07:00
committed by GitHub
parent 031b067a3a
commit e4c91ed13f
20 changed files with 27 additions and 27 deletions

View File

@@ -46,12 +46,12 @@ import org.junit.runners.Parameterized;
@SuppressWarnings("ConstantConditions")
@RunWith(Parameterized.class)
public class HiveSyncToolTest {
public class TestHiveSyncTool {
// Test sync tool using both jdbc and metastore client
private boolean useJdbc;
public HiveSyncToolTest(Boolean useJdbc) {
public TestHiveSyncTool(Boolean useJdbc) {
this.useJdbc = useJdbc;
}

View File

@@ -107,7 +107,7 @@ public class TestUtil {
hiveSyncConfig.hivePass = "";
hiveSyncConfig.databaseName = "testdb";
hiveSyncConfig.tableName = "test1";
hiveSyncConfig.basePath = "/tmp/hdfs/HiveSyncToolTest/";
hiveSyncConfig.basePath = "/tmp/hdfs/TestHiveSyncTool/";
hiveSyncConfig.assumeDatePartitioning = true;
hiveSyncConfig.usePreApacheInputFormat = false;
hiveSyncConfig.partitionFields = Lists.newArrayList("datestr");