SPVBlockStoreTest: Fix missing close().

This commit is contained in:
Andreas Schildbach 2019-02-15 01:20:59 +01:00
parent 18e79b58b8
commit aec74e344b

View File

@ -73,6 +73,7 @@ public class SPVBlockStoreTest {
// Check the chain head was stored correctly also. // Check the chain head was stored correctly also.
StoredBlock chainHead = store.getChainHead(); StoredBlock chainHead = store.getChainHead();
assertEquals(b1, chainHead); assertEquals(b1, chainHead);
store.close();
} }
@Test(expected = BlockStoreException.class) @Test(expected = BlockStoreException.class)