Skip to content

Commit 3ea48a6

Browse files
committed
DATAREST-1320 - Polishing.
1 parent 39b897e commit 3ea48a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spring-data-rest-core/src/test/java/org/springframework/data/rest/core/mapping/MappingResourceMetadataUnitTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public void allowsLookupOfPropertyByMappedName() {
5252
PropertyAwareResourceMapping propertyMapping = metadata.getProperty("foo");
5353

5454
assertThat(propertyMapping).isNotNull();
55-
assertThat(propertyMapping.getProperty()).isEqualTo((Object) property);
55+
assertThat(propertyMapping.getProperty()).isEqualTo(property);
5656
assertThat(metadata.getMappingFor(property).getPath().matches("foo")).isTrue();
5757
}
5858

0 commit comments

Comments
 (0)