Skip to content

Commit

Permalink
Fix database name
Browse files Browse the repository at this point in the history
  • Loading branch information
sualeh committed Jul 26, 2023
1 parent e1b12c2 commit 94c724b
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,10 @@
import static schemacrawler.test.utility.FileHasContent.hasSameContentAs;
import static schemacrawler.test.utility.FileHasContent.outputOf;
import static schemacrawler.test.utility.TestUtility.javaVersion;

import java.io.IOException;
import java.nio.file.Path;

import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;

import schemacrawler.schemacrawler.LoadOptionsBuilder;
import schemacrawler.schemacrawler.SchemaCrawlerOptions;
import schemacrawler.schemacrawler.SchemaCrawlerOptionsBuilder;
Expand All @@ -55,7 +52,7 @@ public class DuckDBTest extends BaseAdditionalDatabaseTest {

@BeforeEach
public void createDatabase() throws IOException {
final Path databasePath = IOUtility.createTempFilePath("SC.DuckDB", "db");
final Path databasePath = IOUtility.createTempFilePath("sc.", "db");
createDataSource("jdbc:duckdb:" + databasePath, null, null);
createDatabase("/duckdb.scripts.txt");
}
Expand Down

0 comments on commit 94c724b

Please sign in to comment.