You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iotdb.apache.org by xi...@apache.org on 2023/05/23 03:34:46 UTC

[iotdb] branch tiered_storage updated: fix spotless error

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

xingtanzjr pushed a commit to branch tiered_storage
in repository https://gitbox.apache.org/repos/asf/iotdb.git


The following commit(s) were added to refs/heads/tiered_storage by this push:
     new 12a58a5bcd4 fix spotless error
12a58a5bcd4 is described below

commit 12a58a5bcd4efe38f815d887daa0291377d1104a
Author: Jinrui.Zhang <xi...@gmail.com>
AuthorDate: Tue May 23 11:34:36 2023 +0800

    fix spotless error
---
 .../src/test/java/org/apache/iotdb/os/cache/OSFileChannelTest.java      | 2 +-
 .../src/test/java/org/apache/iotdb/os/cache/OSInputStreamTest.java      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/object-storage/src/test/java/org/apache/iotdb/os/cache/OSFileChannelTest.java b/object-storage/src/test/java/org/apache/iotdb/os/cache/OSFileChannelTest.java
index 7fcb87ed5a9..2eb3b5be4ec 100644
--- a/object-storage/src/test/java/org/apache/iotdb/os/cache/OSFileChannelTest.java
+++ b/object-storage/src/test/java/org/apache/iotdb/os/cache/OSFileChannelTest.java
@@ -45,7 +45,7 @@ import java.util.concurrent.ExecutorService;
 import java.util.concurrent.Executors;
 import java.util.concurrent.Future;
 
-import static org.junit.Assert.*;
+import static org.junit.Assert.assertEquals;
 import static org.mockito.Mockito.when;
 
 @RunWith(MockitoJUnitRunner.class)
diff --git a/object-storage/src/test/java/org/apache/iotdb/os/cache/OSInputStreamTest.java b/object-storage/src/test/java/org/apache/iotdb/os/cache/OSInputStreamTest.java
index 21741294ae5..50978182034 100644
--- a/object-storage/src/test/java/org/apache/iotdb/os/cache/OSInputStreamTest.java
+++ b/object-storage/src/test/java/org/apache/iotdb/os/cache/OSInputStreamTest.java
@@ -39,7 +39,7 @@ import org.testcontainers.shaded.org.apache.commons.io.FileUtils;
 import java.io.File;
 import java.io.InputStream;
 
-import static org.junit.Assert.*;
+import static org.junit.Assert.assertEquals;
 import static org.mockito.Mockito.when;
 
 @RunWith(MockitoJUnitRunner.class)