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() { }