diff --git a/bramble-core/src/test/java/org/briarproject/bramble/db/H2TransactionIsolationTest.java b/bramble-core/src/test/java/org/briarproject/bramble/db/H2TransactionIsolationTest.java index c91690bd9..f79b1ccbe 100644 --- a/bramble-core/src/test/java/org/briarproject/bramble/db/H2TransactionIsolationTest.java +++ b/bramble-core/src/test/java/org/briarproject/bramble/db/H2TransactionIsolationTest.java @@ -35,9 +35,9 @@ public class H2TransactionIsolationTest extends BrambleTestCase { private final File testDir = TestUtils.getTestDirectory(); private final File db = new File(testDir, "db"); private final String withMvcc = "jdbc:h2:split:" + db.getAbsolutePath() - + ";MV_STORE=TRUE;MVCC=TRUE"; + + ";MV_STORE=TRUE"; private final String withoutMvcc = "jdbc:h2:split:" + db.getAbsolutePath() - + ";MV_STORE=FALSE;MVCC=FALSE;LOCK_MODE=1"; + + ";MV_STORE=FALSE;LOCK_MODE=1"; @Before public void setUp() throws Exception {