Fix database URLs in tests.

This commit is contained in:
akwizgran
2023-08-29 18:14:49 +01:00
parent 98d1fc4ce2
commit da186abced

View File

@@ -35,9 +35,9 @@ public class H2TransactionIsolationTest extends BrambleTestCase {
private final File testDir = TestUtils.getTestDirectory(); private final File testDir = TestUtils.getTestDirectory();
private final File db = new File(testDir, "db"); private final File db = new File(testDir, "db");
private final String withMvcc = "jdbc:h2:split:" + db.getAbsolutePath() 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() private final String withoutMvcc = "jdbc:h2:split:" + db.getAbsolutePath()
+ ";MV_STORE=FALSE;MVCC=FALSE;LOCK_MODE=1"; + ";MV_STORE=FALSE;LOCK_MODE=1";
@Before @Before
public void setUp() throws Exception { public void setUp() throws Exception {