formattingˆ

This commit is contained in:
spencergibb
2023-01-11 16:30:08 -05:00
parent f8df845c61
commit bee680d388

View File

@@ -56,7 +56,8 @@ public class ServerWebExchangeUtilsTests {
@Test
public void missingVarThrowsException() {
MockServerWebExchange exchange = mockExchange(Collections.emptyMap());
Assertions.assertThatThrownBy(() -> expand(exchange, "my-{foo}-{baz}")).isInstanceOf(IllegalArgumentException.class);
Assertions.assertThatThrownBy(() -> expand(exchange, "my-{foo}-{baz}"))
.isInstanceOf(IllegalArgumentException.class);
}
@Test