You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@paimon.apache.org by ju...@apache.org on 2024/04/08 11:30:29 UTC

(paimon) branch master updated: [test] Reduce the number of tests for BloomFilter64Test.testFunction

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

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


The following commit(s) were added to refs/heads/master by this push:
     new fd905dd24 [test] Reduce the number of tests for BloomFilter64Test.testFunction
fd905dd24 is described below

commit fd905dd24db60cd1277496c0d1a219310e91bb02
Author: Zouxxyy <zo...@alibaba-inc.com>
AuthorDate: Mon Apr 8 19:30:24 2024 +0800

    [test] Reduce the number of tests for BloomFilter64Test.testFunction
---
 .../src/test/java/org/apache/paimon/utils/BloomFilter64Test.java      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/paimon-common/src/test/java/org/apache/paimon/utils/BloomFilter64Test.java b/paimon-common/src/test/java/org/apache/paimon/utils/BloomFilter64Test.java
index 10dab2950..42532fea4 100644
--- a/paimon-common/src/test/java/org/apache/paimon/utils/BloomFilter64Test.java
+++ b/paimon-common/src/test/java/org/apache/paimon/utils/BloomFilter64Test.java
@@ -19,7 +19,7 @@
 package org.apache.paimon.utils;
 
 import org.assertj.core.api.Assertions;
-import org.junit.jupiter.api.RepeatedTest;
+import org.junit.jupiter.api.Test;
 
 import java.util.ArrayList;
 import java.util.List;
@@ -30,7 +30,7 @@ public class BloomFilter64Test {
 
     private static final Random RANDOM = new Random();
 
-    @RepeatedTest(10000)
+    @Test
     public void testFunction() {
         BloomFilter64 bloomFilter64 = new BloomFilter64(10000, 0.02);