From b05da55e7dbeef80a949cbf1c689867fcbb018e3 Mon Sep 17 00:00:00 2001 From: Pontus Melke Date: Thu, 9 Jun 2016 10:22:31 +0200 Subject: [PATCH] Fixes from code review --- .../neo4j/internal/cypher/acceptance/MatchAcceptanceTest.scala | 1 - .../src/{main => test}/java/cypher/MapRow.java | 0 2 files changed, 1 deletion(-) rename community/cypher/compatibility-suite/src/{main => test}/java/cypher/MapRow.java (100%) diff --git a/community/cypher/acceptance/src/test/scala/org/neo4j/internal/cypher/acceptance/MatchAcceptanceTest.scala b/community/cypher/acceptance/src/test/scala/org/neo4j/internal/cypher/acceptance/MatchAcceptanceTest.scala index db9af74755c8..86541f65d3ed 100644 --- a/community/cypher/acceptance/src/test/scala/org/neo4j/internal/cypher/acceptance/MatchAcceptanceTest.scala +++ b/community/cypher/acceptance/src/test/scala/org/neo4j/internal/cypher/acceptance/MatchAcceptanceTest.scala @@ -28,7 +28,6 @@ import scala.collection.JavaConverters._ class MatchAcceptanceTest extends ExecutionEngineFunSuite with QueryStatisticsTestSupport with NewPlannerTestSupport { - test("make sure non-existing nodes are not returned") { executeWithAllPlannersAndCompatibilityMode("match (n) where id(n) = 10 return n") should be(empty) executeWithAllPlannersAndRuntimesAndCompatibilityMode("match ()-[r]->() where id(r) = 10 return r") should be(empty) diff --git a/community/cypher/compatibility-suite/src/main/java/cypher/MapRow.java b/community/cypher/compatibility-suite/src/test/java/cypher/MapRow.java similarity index 100% rename from community/cypher/compatibility-suite/src/main/java/cypher/MapRow.java rename to community/cypher/compatibility-suite/src/test/java/cypher/MapRow.java