From 378f5414ccbf1f440bc99fe852f8e9ca796e4048 Mon Sep 17 00:00:00 2001 From: Moritz Halbritter Date: Thu, 10 Aug 2023 09:21:19 +0200 Subject: [PATCH] Fix formatting --- .../example/resttemplate/RestTemplateApplicationAotTests.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/framework/rest-template/src/appTest/java/com/example/resttemplate/RestTemplateApplicationAotTests.java b/framework/rest-template/src/appTest/java/com/example/resttemplate/RestTemplateApplicationAotTests.java index 4daec5a0..eb3b1983 100644 --- a/framework/rest-template/src/appTest/java/com/example/resttemplate/RestTemplateApplicationAotTests.java +++ b/framework/rest-template/src/appTest/java/com/example/resttemplate/RestTemplateApplicationAotTests.java @@ -20,7 +20,7 @@ class RestTemplateApplicationAotTests { Awaitility.await() .atMost(Duration.ofSeconds(30)) .untilAsserted(() -> assertThat(output) - .hasLineMatching("http: DataDto\\{url='http:\\/\\/[\\w.]+:\\d+\\/anything', method='GET'\\}")); + .hasLineMatching("http: DataDto\\{url='http:\\/\\/[\\w.]+:\\d+\\/anything', method='GET'\\}")); } @Test @@ -28,7 +28,7 @@ class RestTemplateApplicationAotTests { Awaitility.await() .atMost(Duration.ofSeconds(30)) .untilAsserted(() -> assertThat(output) - .hasLineMatching("https: DataDto\\{url='https:\\/\\/[\\w.]+:\\d+\\/anything', method='GET'\\}")); + .hasLineMatching("https: DataDto\\{url='https:\\/\\/[\\w.]+:\\d+\\/anything', method='GET'\\}")); } }