Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-astachowski committed Oct 31, 2024
1 parent 4899819 commit 31023c4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
import java.sql.Types;
import java.util.Arrays;
import java.util.List;
import net.snowflake.client.category.TestCategoryResultSet;
import net.snowflake.client.category.TestTags;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
import java.sql.SQLException;
import java.util.ArrayList;
import net.snowflake.client.annotations.DontRunOnGithubActions;
import net.snowflake.client.category.TestCategoryOthers;
import net.snowflake.client.category.TestTags;
import net.snowflake.client.core.SFSession;
import net.snowflake.client.core.SFStatement;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
@Tag(TestTags.OTHERS)
public class JDK14LoggerWithClientLatestIT extends AbstractDriverIT {

@TempDir public File tmpFolder;
@TempDir public File tmpFolder;
String homePath = systemGetProperty("user.home");

@Test
Expand Down Expand Up @@ -80,12 +80,12 @@ public void testJDK14LoggingWithClientConfigInvalidConfigFilePath() {
@Disabled
@DontRunOnWindows
public void testJDK14LoggingWithClientConfigPermissionError() throws IOException {
File configFile = new File(tmpFolder, "config.json");
configFile.createNewFile();
Path configFilePath = configFile.toPath();
File logFolder = new File(tmpFolder, "logs");
logFolder.createNewFile();
Path logFolderPath = logFolder.toPath();
File configFile = new File(tmpFolder, "config.json");
configFile.createNewFile();
Path configFilePath = configFile.toPath();
File logFolder = new File(tmpFolder, "logs");
logFolder.createNewFile();
Path logFolderPath = logFolder.toPath();
String configJson =
"{\"common\":{\"log_level\":\"debug\",\"log_path\":\"" + logFolderPath + "\"}}";
HashSet<PosixFilePermission> perms = new HashSet<>();
Expand Down

0 comments on commit 31023c4

Please sign in to comment.