From fc763926435b59b65d4e9fdb47f239017e2ebd6a Mon Sep 17 00:00:00 2001 From: Oliver Gierke Date: Wed, 23 Mar 2016 09:51:49 +0100 Subject: [PATCH] DATACMNS-829 - Removed test method accidentally included in the backport. --- .../projection/ProxyProjectionFactoryUnitTests.java | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/src/test/java/org/springframework/data/projection/ProxyProjectionFactoryUnitTests.java b/src/test/java/org/springframework/data/projection/ProxyProjectionFactoryUnitTests.java index 67ce6f000..d869fdb4a 100644 --- a/src/test/java/org/springframework/data/projection/ProxyProjectionFactoryUnitTests.java +++ b/src/test/java/org/springframework/data/projection/ProxyProjectionFactoryUnitTests.java @@ -223,18 +223,6 @@ public class ProxyProjectionFactoryUnitTests { assertThat(excerpt.getId(), is(customer.id.toString())); } - /** - * @see DATACMNS-89 - */ - @Test - public void exposesProjectionInformationCorrectly() { - - ProjectionInformation information = factory.getProjectionInformation(CustomerExcerpt.class); - - assertThat(information.getType(), is(typeCompatibleWith(CustomerExcerpt.class))); - assertThat(information.isClosed(), is(true)); - } - /** * @see DATACMNS-829 */