Rename fileName to filePath for clarity

This commit is contained in:
김선우
2025-01-17 04:26:27 +09:00
parent 0819963b2f
commit 3e2e998060
6 changed files with 97 additions and 151 deletions

View File

@@ -18,9 +18,9 @@ class JDBC4ConnectionTest {
@BeforeEach
void setUp() throws Exception {
String fileUrl = TestUtils.createTempFile();
String url = "jdbc:sqlite:" + fileUrl;
connection = new JDBC4Connection(url, fileUrl, new Properties());
String filePath = TestUtils.createTempFile();
String url = "jdbc:sqlite:" + filePath;
connection = new JDBC4Connection(url, filePath, new Properties());
}
@Test