This is an automated email from the ASF dual-hosted git repository.

mmiller pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/master by this push:
     new a1b1ae6  Formatting
a1b1ae6 is described below

commit a1b1ae6bfef2ca11d92b86ab60930b3c56971f6e
Author: Mike Miller <mmil...@apache.org>
AuthorDate: Wed May 22 11:56:46 2019 -0400

    Formatting
---
 test/src/main/java/org/apache/accumulo/test/BulkImportVolumeIT.java    | 3 ++-
 test/src/main/java/org/apache/accumulo/test/functional/BulkFileIT.java | 2 +-
 .../main/java/org/apache/accumulo/test/functional/CompactionIT.java    | 3 ++-
 3 files changed, 5 insertions(+), 3 deletions(-)

diff --git 
a/test/src/main/java/org/apache/accumulo/test/BulkImportVolumeIT.java 
b/test/src/main/java/org/apache/accumulo/test/BulkImportVolumeIT.java
index 9e13eae..4164288 100644
--- a/test/src/main/java/org/apache/accumulo/test/BulkImportVolumeIT.java
+++ b/test/src/main/java/org/apache/accumulo/test/BulkImportVolumeIT.java
@@ -70,7 +70,8 @@ public class BulkImportVolumeIT extends 
AccumuloClusterHarness {
     try (AccumuloClient client = 
Accumulo.newClient().from(getClientProps()).build()) {
       client.tableOperations().create(tableName);
       FileSystem fs = getFileSystem();
-      Path rootPath = new Path(fs.getUri().toString() + 
cluster.getTemporaryPath(), getClass().getName());
+      Path rootPath =
+          new Path(fs.getUri().toString() + cluster.getTemporaryPath(), 
getClass().getName());
       fs.deleteOnExit(rootPath);
 
       Path bulk = new Path(rootPath, "bulk");
diff --git 
a/test/src/main/java/org/apache/accumulo/test/functional/BulkFileIT.java 
b/test/src/main/java/org/apache/accumulo/test/functional/BulkFileIT.java
index cd7e870..53d08e9 100644
--- a/test/src/main/java/org/apache/accumulo/test/functional/BulkFileIT.java
+++ b/test/src/main/java/org/apache/accumulo/test/functional/BulkFileIT.java
@@ -74,7 +74,7 @@ public class BulkFileIT extends AccumuloClusterHarness {
       Configuration conf = new Configuration();
       AccumuloConfiguration aconf = 
getCluster().getServerContext().getConfiguration();
       FileSystem fs = getCluster().getFileSystem();
-      String rootPath = fs.getUri().toString()  + 
cluster.getTemporaryPath().toString();
+      String rootPath = fs.getUri().toString() + 
cluster.getTemporaryPath().toString();
 
       String dir = rootPath + "/bulk_test_diff_files_89723987592_" + 
getUniqueNames(1)[0];
 
diff --git 
a/test/src/main/java/org/apache/accumulo/test/functional/CompactionIT.java 
b/test/src/main/java/org/apache/accumulo/test/functional/CompactionIT.java
index debee5a..51415dc 100644
--- a/test/src/main/java/org/apache/accumulo/test/functional/CompactionIT.java
+++ b/test/src/main/java/org/apache/accumulo/test/functional/CompactionIT.java
@@ -115,7 +115,8 @@ public class CompactionIT extends AccumuloClusterHarness {
       c.tableOperations().create(tableName);
       c.tableOperations().setProperty(tableName, 
Property.TABLE_MAJC_RATIO.getKey(), "1.0");
       FileSystem fs = getFileSystem();
-      Path root = new Path(fs.getUri().toString() + 
cluster.getTemporaryPath(), getClass().getName());
+      Path root =
+          new Path(fs.getUri().toString() + cluster.getTemporaryPath(), 
getClass().getName());
       fs.deleteOnExit(root);
       Path testrf = new Path(root, "testrf");
       fs.deleteOnExit(testrf);

Reply via email to