Skip to content

Commit e571034

Browse files
author
Artem Bilan
committed
Polishing according latest SPR-4.0.0 fixes
* Remove `@Ignore` from `MongoDbMessageStoreTests#testInt3153SequenceDetails()` * Revert generic for `SessionFactory` field in `SftpServerOutboundTests`
1 parent a048170 commit e571034

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

spring-integration-mongodb/src/test/java/org/springframework/integration/mongodb/store/MongoDbMessageStoreTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ public void testWithMessageHistory() throws Exception{
126126
assertEquals("channel", fooChannelHistory.get("type"));
127127
}
128128

129-
@Test @Ignore
129+
@Test
130130
@MongoDbAvailable
131131
public void testInt3153SequenceDetails() throws Exception{
132132
MongoDbFactory mongoDbFactory = this.prepareMongoFactory();

spring-integration-sftp/src/test/java/org/springframework/integration/sftp/outbound/SftpServerOutboundTests.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,8 @@ public class SftpServerOutboundTests {
8787
@Autowired
8888
private DirectChannel inboundMGetRecursiveFiltered;
8989

90-
@SuppressWarnings("rawtypes")
9190
@Autowired
92-
private SessionFactory sessionFactory;
91+
private SessionFactory<?> sessionFactory;
9392

9493
@Before
9594
public void setup() throws Exception {

0 commit comments

Comments
 (0)