This is an automated email from the ASF dual-hosted git repository. jiangtian pushed a commit to branch jira_1376_0.12 in repository https://gitbox.apache.org/repos/asf/iotdb.git
commit f3ca47af7deb09914f94cd069831bfa5d4e40e33 Author: jt2594838 <[email protected]> AuthorDate: Wed May 12 22:50:03 2021 +0800 apply spotless --- .../cluster/log/applier/DataLogApplierTest.java | 28 ++++++++++++---------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/cluster/src/test/java/org/apache/iotdb/cluster/log/applier/DataLogApplierTest.java b/cluster/src/test/java/org/apache/iotdb/cluster/log/applier/DataLogApplierTest.java index cfee1bb..0450237 100644 --- a/cluster/src/test/java/org/apache/iotdb/cluster/log/applier/DataLogApplierTest.java +++ b/cluster/src/test/java/org/apache/iotdb/cluster/log/applier/DataLogApplierTest.java @@ -19,19 +19,6 @@ package org.apache.iotdb.cluster.log.applier; -import static org.junit.Assert.assertEquals; -import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertNull; -import static org.junit.Assert.assertTrue; - -import java.io.ByteArrayOutputStream; -import java.io.DataOutputStream; -import java.io.IOException; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Collections; -import java.util.List; -import junit.framework.TestCase; import org.apache.iotdb.cluster.client.DataClientProvider; import org.apache.iotdb.cluster.client.async.AsyncDataClient; import org.apache.iotdb.cluster.common.IoTDBTest; @@ -81,6 +68,8 @@ import org.apache.iotdb.tsfile.file.metadata.enums.TSEncoding; import org.apache.iotdb.tsfile.read.common.RowRecord; import org.apache.iotdb.tsfile.read.query.dataset.QueryDataSet; import org.apache.iotdb.tsfile.write.schema.TimeseriesSchema; + +import junit.framework.TestCase; import org.apache.thrift.async.AsyncMethodCallback; import org.apache.thrift.protocol.TBinaryProtocol.Factory; import org.junit.After; @@ -89,6 +78,19 @@ import org.junit.Test; import org.slf4j.Logger; import org.slf4j.LoggerFactory; +import java.io.ByteArrayOutputStream; +import java.io.DataOutputStream; +import java.io.IOException; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collections; +import java.util.List; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertNull; +import static org.junit.Assert.assertTrue; + public class DataLogApplierTest extends IoTDBTest { private static final Logger logger = LoggerFactory.getLogger(DataLogApplierTest.class);
