This is an automated email from the ASF dual-hosted git repository.
danny0405 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git
The following commit(s) were added to refs/heads/master by this push:
new d2877cfe43a [MINOR] Fix content in
TestHoodieCompactionStrategy#testBoundedIOSimple (#9127)
d2877cfe43a is described below
commit d2877cfe43a9d943e1cd6c2ff7893edb09b1716c
Author: ksmou <[email protected]>
AuthorDate: Thu Jul 6 18:07:22 2023 +0800
[MINOR] Fix content in TestHoodieCompactionStrategy#testBoundedIOSimple
(#9127)
---
.../table/action/compact/strategy/TestHoodieCompactionStrategy.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/hudi-client/hudi-spark-client/src/test/java/org/apache/hudi/table/action/compact/strategy/TestHoodieCompactionStrategy.java
b/hudi-client/hudi-spark-client/src/test/java/org/apache/hudi/table/action/compact/strategy/TestHoodieCompactionStrategy.java
index 2e08dfe398d..fb5a7844649 100644
---
a/hudi-client/hudi-spark-client/src/test/java/org/apache/hudi/table/action/compact/strategy/TestHoodieCompactionStrategy.java
+++
b/hudi-client/hudi-spark-client/src/test/java/org/apache/hudi/table/action/compact/strategy/TestHoodieCompactionStrategy.java
@@ -87,7 +87,7 @@ public class TestHoodieCompactionStrategy {
Long returnedSize = returned.stream().map(s ->
s.getMetrics().get(BoundedIOCompactionStrategy.TOTAL_IO_MB))
.map(Double::longValue).reduce(Long::sum).orElse(0L);
assertEquals(610, (long) returnedSize,
- "Should chose the first 2 compactions which should result in a total
IO of 690 MB");
+ "Should chose the first 2 compactions which should result in a total
IO of 610 MB");
}
@Test