# IGNITE-709 Remove incorrect test
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/fe070234 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/fe070234 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/fe070234 Branch: refs/heads/ignite-709_3 Commit: fe070234d052961f7540a62b94b9d03309607ca3 Parents: 6762cf9 Author: sevdokimov <sevdoki...@gridgain.com> Authored: Fri May 15 16:05:56 2015 +0300 Committer: sevdokimov <sevdoki...@gridgain.com> Committed: Fri May 15 16:05:56 2015 +0300 ---------------------------------------------------------------------- .../continuous/GridEventConsumeSelfTest.java | 22 -------------------- 1 file changed, 22 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/fe070234/modules/core/src/test/java/org/apache/ignite/internal/processors/continuous/GridEventConsumeSelfTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/continuous/GridEventConsumeSelfTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/continuous/GridEventConsumeSelfTest.java index 9ff99c4..bca784b 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/processors/continuous/GridEventConsumeSelfTest.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/continuous/GridEventConsumeSelfTest.java @@ -509,28 +509,6 @@ public class GridEventConsumeSelfTest extends GridCommonAbstractTest implements /** * @throws Exception If failed. */ - public void testEmptyProjection() throws Exception { - try { - events(grid(0).cluster().forPredicate(F.<ClusterNode>alwaysFalse())).remoteListen( - new P2<UUID, Event>() { - @Override public boolean apply(UUID nodeId, Event evt) { - return true; - } - }, - null - ); - - assert false : "Exception was not thrown."; - } - catch (IgniteException e) { - assertTrue(e.getMessage().startsWith( - "Failed to register remote continuous listener (projection is empty).")); - } - } - - /** - * @throws Exception If failed. - */ public void testStopByCallback() throws Exception { final Collection<UUID> nodeIds = new HashSet<>(); final AtomicInteger cnt = new AtomicInteger();