Merge branch '2.7.x' into 3.0.x

Closes gh-37552
This commit is contained in:
Andy Wilkinson
2023-09-22 17:44:30 +01:00
2 changed files with 4 additions and 4 deletions

View File

@@ -41,7 +41,7 @@ class JmsPropertiesTests {
void formatConcurrencyOnlyLowerBound() {
JmsProperties properties = new JmsProperties();
properties.getListener().setConcurrency(2);
assertThat(properties.getListener().formatConcurrency()).isEqualTo("2");
assertThat(properties.getListener().formatConcurrency()).isEqualTo("2-2");
}
@Test