Skip to content

Commit 0a1c65f

Browse files
committed
Fix test compile error introduced during merge
See gh-42839
1 parent fdf7ca9 commit 0a1c65f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-boot-project/spring-boot/src/test/java/org/springframework/boot/ssl/pem/PemContentTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ void loadWithStringWhenContentIsPemContentReturnsTrimmedContent() throws Excepti
159159
+lGuHKdhNOVW9CmqPD1y76o6c8PQKuF7KZEoY2jvy3GeIfddBvqXgZ4PbWvFz1jO
160160
32C9XWHwRA4=
161161
-----END CERTIFICATE-----""";
162-
assertThat(PemContent.load(content)).hasToString(trimmedContent);
162+
assertThat(PemContent.load(content, new ApplicationResourceLoader())).hasToString(trimmedContent);
163163
}
164164

165165
@Test

0 commit comments

Comments
 (0)