Skip to content

Commit 01b6ff6

Browse files
committed
Fix ConfigurableMongoDbMessageGroupStoreTests
The test methods for JUnit 4 must be `public`
1 parent 07a1720 commit 01b6ff6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public void messageGroupStoreLazyLoadPerformance() {
8282
}
8383

8484
@Test
85-
void groupIsForceReleaseAfterTimeoutWhenGroupConditionIsSet() {
85+
public void groupIsForceReleaseAfterTimeoutWhenGroupConditionIsSet() {
8686
try (var context = new ClassPathXmlApplicationContext("mongo-aggregator-configurable-config.xml", getClass())) {
8787
MessageChannel input = context.getBean("inputChannel", MessageChannel.class);
8888
QueueChannel output = context.getBean("outputChannel", QueueChannel.class);

0 commit comments

Comments
 (0)