You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by bl...@apache.org on 2021/09/13 19:35:58 UTC

[iceberg] branch master updated: Core: Fix comment in TestHadoopCatalog (#3107)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 0d76982  Core: Fix comment in TestHadoopCatalog (#3107)
0d76982 is described below

commit 0d769821a65c074b22de19261c2063009039639b
Author: Anton Okolnychyi <ao...@apple.com>
AuthorDate: Mon Sep 13 09:35:48 2021 -1000

    Core: Fix comment in TestHadoopCatalog (#3107)
---
 core/src/test/java/org/apache/iceberg/hadoop/TestHadoopCatalog.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/src/test/java/org/apache/iceberg/hadoop/TestHadoopCatalog.java b/core/src/test/java/org/apache/iceberg/hadoop/TestHadoopCatalog.java
index 9d71ea4..80454d6 100644
--- a/core/src/test/java/org/apache/iceberg/hadoop/TestHadoopCatalog.java
+++ b/core/src/test/java/org/apache/iceberg/hadoop/TestHadoopCatalog.java
@@ -244,7 +244,7 @@ public class TestHadoopCatalog extends HadoopTableTestBase {
     HadoopCatalog catalog = new HadoopCatalog(conf, warehousePath);
     TableIdentifier testTable = TableIdentifier.of("db", "ns1", "ns2", "tbl");
     String metaLocation = catalog.defaultWarehouseLocation(testTable);
-    //testing with non existent directory
+    // testing with non existent directory
     Assert.assertFalse(catalog.dropTable(testTable));
 
     FileSystem fs = Util.getFs(new Path(metaLocation), conf);