You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@atlas.apache.org by kb...@apache.org on 2019/06/11 12:17:17 UTC

[atlas] branch branch-0.8 updated: ATLAS-3040 : Test case fix on branch0.8 :- testTruncateTable(org.apache.atlas.hive.hook.HiveHookIT)

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

kbhatt pushed a commit to branch branch-0.8
in repository https://gitbox.apache.org/repos/asf/atlas.git


The following commit(s) were added to refs/heads/branch-0.8 by this push:
     new 5614b38  ATLAS-3040 : Test case fix on branch0.8 :- testTruncateTable(org.apache.atlas.hive.hook.HiveHookIT)
5614b38 is described below

commit 5614b3864d82f1b1896a94c982072e6ea796c816
Author: kevalbhatt <kb...@apache.org>
AuthorDate: Tue Jun 11 17:44:01 2019 +0530

    ATLAS-3040 : Test case fix on branch0.8 :- testTruncateTable(org.apache.atlas.hive.hook.HiveHookIT)
---
 .../src/test/java/org/apache/atlas/hive/hook/HiveHookIT.java            | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/HiveHookIT.java b/addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/HiveHookIT.java
index 1cf6b79..486cfb0 100755
--- a/addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/HiveHookIT.java
+++ b/addons/hive-bridge/src/test/java/org/apache/atlas/hive/hook/HiveHookIT.java
@@ -1307,7 +1307,7 @@ public class HiveHookIT extends HiveITBase {
         Map<String, AtlasEntityHeader> entityMap             = atlasLineageInfoInput.getGuidEntityMap();
 
         //Below should be assertTrue - Fix https://issues.apache.org/jira/browse/ATLAS-653
-        Assert.assertFalse(entityMap.containsKey(tableId));
+        Assert.assertTrue(entityMap.containsKey(tableId));
     }
 
     @Test