We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de546a9 commit 6505920Copy full SHA for 6505920
src/test/java/org/sqlite/ExtensionTest.java
@@ -34,8 +34,11 @@ public void tearDown() throws Exception {
34
35
@Test
36
public void loadExtensionEnabled() throws Exception {
37
- SQLiteConnection connection = (SQLiteConnection) DriverManager.getConnection("jdbc:sqlite::memory:?enable_load_extension=true");
38
- assertThat(connection.getDatabase().getConfig().isEnabledLoadExtension()).isTrue();
+ SQLiteConnection connection =
+ (SQLiteConnection)
39
+ DriverManager.getConnection(
40
+ "jdbc:sqlite::memory:?enable_load_extension=true");
41
+ assertThat(connection.getDatabase().getConfig().isEnabledLoadExtension()).isTrue();
42
}
43
44
0 commit comments