You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by sh...@apache.org on 2018/11/20 02:49:35 UTC

[kylin] branch 2.4.x updated: KYLIN-3689 fix UT

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

shaofengshi pushed a commit to branch 2.4.x
in repository https://gitbox.apache.org/repos/asf/kylin.git


The following commit(s) were added to refs/heads/2.4.x by this push:
     new b3df23d  KYLIN-3689 fix UT
b3df23d is described below

commit b3df23d876fba2eec30743fd5b86f41a7c6a5de7
Author: shaofengshi <sh...@apache.org>
AuthorDate: Tue Nov 20 10:48:33 2018 +0800

    KYLIN-3689 fix UT
---
 .../kylin/metadata/model/DefaultPartitionConditionBuilderTest.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core-metadata/src/test/java/org/apache/kylin/metadata/model/DefaultPartitionConditionBuilderTest.java b/core-metadata/src/test/java/org/apache/kylin/metadata/model/DefaultPartitionConditionBuilderTest.java
index 404020c..b536e29 100644
--- a/core-metadata/src/test/java/org/apache/kylin/metadata/model/DefaultPartitionConditionBuilderTest.java
+++ b/core-metadata/src/test/java/org/apache/kylin/metadata/model/DefaultPartitionConditionBuilderTest.java
@@ -59,7 +59,7 @@ public class DefaultPartitionConditionBuilderTest extends LocalFileMetadataTestC
 
         range = new TSRange(0L, 0L);
         condition = partitionConditionBuilder.buildDateRangeCondition(partitionDesc, null, range);
-        Assert.assertEquals("1=1", condition);
+        Assert.assertEquals("1=0", condition);
     }
 
     @Test