Minor cleanup

This commit is contained in:
coach88 2015-10-01 15:42:36 +03:00
parent 8c935d81d9
commit f0b6ada3cf
1 changed files with 4 additions and 4 deletions

View File

@ -98,10 +98,10 @@ public class GridFSIntegrationTest {
assertNotNull(gridFSDBFile);
assertNotNull(gridFSDBFile.getInputStream());
assertThat(gridFSDBFile.numChunks(), is(1));
assertThat(gridFSDBFile.containsField("filename"),is(true));
assertThat(gridFSDBFile.get("filename"),is("test.png"));
assertThat(gridFSDBFile.getId(),is(id));
assertThat(gridFSDBFile.keySet().size(),is(9));
assertThat(gridFSDBFile.containsField("filename"), is(true));
assertThat(gridFSDBFile.get("filename"), is("test.png"));
assertThat(gridFSDBFile.getId(), is(id));
assertThat(gridFSDBFile.keySet().size(), is(9));
assertNotNull(gridFSDBFile.getMD5());
assertNotNull(gridFSDBFile.getUploadDate());
assertNull(gridFSDBFile.getAliases());