Improve the comment in InfoLogLevelTest.java

Summary:
Improve the comment in InfoLogLevelTest.java

Test Plan:
make rocksdbjava
This commit is contained in:
Yueh-Hsuan Chiang 2014-11-15 17:05:52 -08:00
parent a77e97c536
commit d3c4a0f4ae

View File

@ -50,6 +50,8 @@ public class InfoLogLevelTest {
db = RocksDB.open(options,
dbFolder.getRoot().getAbsolutePath());
db.put("key".getBytes(), "value".getBytes());
// As InfoLogLevel is set to FATAL_LEVEL, here we expect the log
// content to be empty.
assertThat(getLogContents()).isEmpty();
} finally {
if (db != null) {