From b99dba38b9988f102a60afc0832183bc43fc4674 Mon Sep 17 00:00:00 2001 From: maobaolong <307499405@qq.com> Date: Fri, 5 Feb 2021 10:11:27 +0800 Subject: [PATCH] HDFS-15819. Fix import style #2681 --- .../hdfs/server/namenode/TestQuotaByStorageType.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/namenode/TestQuotaByStorageType.java b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/namenode/TestQuotaByStorageType.java index a53b319eab..6f69792f0d 100644 --- a/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/namenode/TestQuotaByStorageType.java +++ b/hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/server/namenode/TestQuotaByStorageType.java @@ -17,10 +17,6 @@ */ package org.apache.hadoop.hdfs.server.namenode; - import static org.junit.Assert.assertEquals; - import static org.junit.Assert.assertTrue; - import static org.junit.Assert.fail; - import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.apache.hadoop.conf.Configuration; @@ -41,10 +37,14 @@ import org.junit.Test; import java.io.IOException; + import static org.hamcrest.CoreMatchers.containsString; import static org.hamcrest.CoreMatchers.allOf; import static org.hamcrest.CoreMatchers.is; import static org.junit.Assert.assertThat; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertTrue; +import static org.junit.Assert.fail; public class TestQuotaByStorageType {