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

@@ -24,18 +24,18 @@ import org.apache.hudi.common.table.SyncableFileSystemView;
import org.apache.hudi.common.table.view.FileSystemViewManager;
import org.apache.hudi.common.table.view.FileSystemViewStorageConfig;
import org.apache.hudi.common.table.view.FileSystemViewStorageType;
import org.apache.hudi.common.table.view.HoodieTableFileSystemViewTest;
import org.apache.hudi.common.table.view.RemoteHoodieTableFileSystemView;
import org.apache.hudi.common.table.view.TestHoodieTableFileSystemView;
import org.apache.hudi.timeline.service.TimelineService;
import org.apache.log4j.LogManager;
import org.apache.log4j.Logger;
/**
* Bring up a remote Timeline Server and run all test-cases of HoodieTableFileSystemViewTest against it
* Bring up a remote Timeline Server and run all test-cases of TestHoodieTableFileSystemView against it
*/
public class RemoteHoodieTableFileSystemViewTest extends HoodieTableFileSystemViewTest {
public class TestRemoteHoodieTableFileSystemView extends TestHoodieTableFileSystemView {
private static Logger log = LogManager.getLogger(RemoteHoodieTableFileSystemViewTest.class);
private static Logger log = LogManager.getLogger(TestRemoteHoodieTableFileSystemView.class);
private TimelineService server;
private RemoteHoodieTableFileSystemView view;