Madan Jampani

Cleaning up after mapdb unit test

...@@ -45,6 +45,8 @@ public class MapDBLogTest { ...@@ -45,6 +45,8 @@ public class MapDBLogTest {
45 @After 45 @After
46 public void tearDown() throws Exception { 46 public void tearDown() throws Exception {
47 Files.deleteIfExists(new File(DB_FILE_NAME).toPath()); 47 Files.deleteIfExists(new File(DB_FILE_NAME).toPath());
48 + Files.deleteIfExists(new File(DB_FILE_NAME + ".t").toPath());
49 + Files.deleteIfExists(new File(DB_FILE_NAME + ".p").toPath());
48 } 50 }
49 51
50 @Test(expected = IllegalStateException.class) 52 @Test(expected = IllegalStateException.class)
......