Skip to content

Commit a7c05ed

Browse files
committed
Fix AbstrMongoDbMesGrStoreTests according to main
1 parent 638276f commit a7c05ed

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2022 the original author or authors.
2+
* Copyright 2002-2023 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -478,9 +478,9 @@ protected void testWithAggregatorWithShutdown(String config) {
478478
.setCorrelationId(1)
479479
.build();
480480
input.send(m1);
481-
assertThat(output.receive(1000)).isNull();
481+
assertThat(output.receive(10)).isNull();
482482
input.send(m2);
483-
assertThat(output.receive(1000)).isNull();
483+
assertThat(output.receive(10)).isNull();
484484

485485
for (int i = 3; i < 10; i++) {
486486
input.send(MessageBuilder.withPayload("" + i)

0 commit comments

Comments
 (0)