Closed thunderbiscuit closed 3 years ago
Issue lies here:
// jvm/src/test/java/org/bitcoindevkit/bdkjni/JvmLibTest.kt class JvmLibTest : LibTest() { override fun getTestDataDir(): String { return Paths.get(System.getProperty("java.io.tmpdir"), "bdk-test").toString() } }
Temporary fix is to add @Before annotation here:
@Before
// test-fixtures/src/main/java/org/bitcoindevkit/bdkjni/LibTest.kt @Before fun cleanupTestDataDir() { File(getTestDataDir()).deleteRecursively() }
Long-term fix I'm not sure.
Fixed with #40.
Issue lies here:
Temporary fix is to add
@Before
annotation here:Long-term fix I'm not sure.