Skip to content

Commit

Permalink
Refactored to avoid confusion around IT naming
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-astachowski committed Oct 23, 2024
1 parent aa9d86a commit df0d801
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@

/** Tests for SnowflakeFileTransferAgent that require an active connection */
@Category(TestCategoryOthers.class)
public class FileUploaderLatestIT extends FileUploaderPrepIT {
public class FileUploaderLatestIT extends FileUploaderPrep {
private static final String OBJ_META_STAGE = "testObjMeta";
private ObjectMapper mapper = new ObjectMapper();
private static final String PUT_COMMAND = "put file:///dummy/path/file2.gz @testStage";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import org.junit.rules.TemporaryFolder;

/** File uploader test prep reused by IT/connection tests and sessionless tests */
abstract class FileUploaderPrepIT extends BaseJDBCTest {
abstract class FileUploaderPrep extends BaseJDBCTest {
@Rule public TemporaryFolder folder = new TemporaryFolder();
private ObjectMapper mapper = new ObjectMapper();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@
import org.junit.experimental.categories.Category;

/** Tests for SnowflakeFileTransferAgent.expandFileNames. */
@Category(TestCategoryOthers.class)
public class FileUploaderSessionlessTest extends FileUploaderPrepIT {
public class FileUploaderSessionlessTest extends FileUploaderPrep {

private ObjectMapper mapper = new ObjectMapper();

Expand Down

0 comments on commit df0d801

Please sign in to comment.