Skip to content

Commit

Permalink
Merge pull request #301
Browse files Browse the repository at this point in the history
Update datasafe-simple-adapter-spring test files
  • Loading branch information
francis-pouatcha committed Apr 17, 2024
2 parents fbcfa91 + 5cbd170 commit 4b80d52
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import org.springframework.test.context.ActiveProfiles;

@ActiveProfiles("filesystem")
public class InjectionForFilesystemTest extends InjectionTest {
public class InjectionForFilesystemTest extends InjectionIT {

@Autowired
SimpleDatasafeService datasafeService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
@Slf4j
@ActiveProfiles("minio")
@UseDatasafeSpringConfiguration
public class InjectionForMinioTest extends InjectionTest {
public class InjectionForMinioIT extends InjectionIT {

@Autowired
private SpringDFSCredentialProperties dfsCredentialProperties;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
@ContextConfiguration
@SpringBootConfiguration
@UseDatasafeSpringConfiguration
public class InjectionTest extends WithStorageProvider {
public class InjectionIT extends WithStorageProvider {

public void testCreateUser(SimpleDatasafeService datasafeService) {
assertThat(datasafeService).isNotNull();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
@Slf4j
@ActiveProfiles("fs-withoutPathEncryption")
@UseDatasafeSpringConfiguration
public class InjectionWithoutPathEncryptionForFilesystemTest extends InjectionTest {
public class InjectionWithoutPathEncryptionForFilesystemIT extends InjectionIT {
@Autowired
private SpringDFSCredentialProperties dfsCredentialProperties;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
@Slf4j
@ActiveProfiles("minio-withoutPathEncryption")
@UseDatasafeSpringConfiguration
public class InjectionWithoutPathEncryptionForMinioTest extends InjectionTest {
public class InjectionWithoutPathEncryptionForMinioIT extends InjectionIT {
@Autowired
private SpringDFSCredentialProperties dfsCredentialProperties;

Expand Down

0 comments on commit 4b80d52

Please sign in to comment.