From 4418c451f31b828b9eaeeed5ebfc5646e95423c1 Mon Sep 17 00:00:00 2001 From: Yanming Zhou Date: Wed, 18 Mar 2026 15:06:03 +0800 Subject: [PATCH] Fix typo See gh-49635 Signed-off-by: Yanming Zhou --- .../context/properties/bind/ValueObjectBinderTests.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/ValueObjectBinderTests.java b/core/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/ValueObjectBinderTests.java index 08c2b2cd5d7..dc0a21acb60 100644 --- a/core/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/ValueObjectBinderTests.java +++ b/core/spring-boot/src/test/java/org/springframework/boot/context/properties/bind/ValueObjectBinderTests.java @@ -211,8 +211,8 @@ class ValueObjectBinderTests { MockConfigurationPropertySource source = new MockConfigurationPropertySource(); source.put("foo", ""); this.sources.add(source); - EmptyRecod emptyRecod = this.binder.bind("foo", Bindable.of(EmptyRecod.class)).get(); - assertThat(emptyRecod).isNotNull(); + EmptyRecord emptyRecord = this.binder.bind("foo", Bindable.of(EmptyRecord.class)).get(); + assertThat(emptyRecord).isNotNull(); } @Test @@ -1008,7 +1008,7 @@ class ValueObjectBinderTests { } - record EmptyRecod() { + record EmptyRecord() { }