We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ebbdf5 commit bcd72e1Copy full SHA for bcd72e1
hbase-server/src/test/java/org/apache/hadoop/hbase/master/http/TestMasterStatusUtil.java
@@ -18,6 +18,7 @@
18
package org.apache.hadoop.hbase.master.http;
19
20
import static org.junit.Assert.assertEquals;
21
+import static org.junit.Assert.assertFalse;
22
import static org.junit.Assert.assertNotNull;
23
import static org.junit.Assert.assertNull;
24
@@ -203,6 +204,7 @@ public void testGetFragmentationInfoTurnedOn() throws IOException {
203
204
conf.setBoolean("hbase.master.ui.fragmentation.enabled", true);
205
Map<String, Integer> fragmentationInfo = MasterStatusUtil.getFragmentationInfo(master, conf);
206
assertNotNull(fragmentationInfo);
207
+ assertFalse(fragmentationInfo.isEmpty());
208
}
209
210
@Test
0 commit comments