Skip to content

Commit

Permalink
Adjust path expander filter terminology
Browse files Browse the repository at this point in the history
  • Loading branch information
InverseFalcon committed Apr 7, 2017
1 parent 784745e commit 2697eb3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/test/java/apoc/path/ExpandPathTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public void testBlacklistBeforeWhitelist() {
}

@Test
public void testBlacklistBeforeTerminationList() {
public void testBlacklistBeforeTerminationFilter() {
db.execute("MATCH (c:Person) WHERE c.name in ['Clint Eastwood', 'Gene Hackman'] SET c:Western");

TestUtil.testResult(db,
Expand All @@ -171,7 +171,7 @@ public void testBlacklistBeforeTerminationList() {
}

@Test
public void testBlacklistBeforeEndNodeList() {
public void testBlacklistBeforeEndNodeFilter() {
db.execute("MATCH (c:Person) WHERE c.name in ['Clint Eastwood', 'Gene Hackman'] SET c:Western");

TestUtil.testResult(db,
Expand All @@ -185,7 +185,7 @@ public void testBlacklistBeforeEndNodeList() {
}

@Test
public void testTerminationListBeforeWhitelist() {
public void testTerminationFilterBeforeWhitelist() {
db.execute("MATCH (c:Person) WHERE c.name in ['Clint Eastwood', 'Gene Hackman', 'Christian Bale'] SET c:Western");

TestUtil.testResult(db,
Expand All @@ -201,7 +201,7 @@ public void testTerminationListBeforeWhitelist() {
}

@Test
public void testTerminationListBeforeEndNodeList() {
public void testTerminationFilterBeforeEndNodeFilter() {
db.execute("MATCH (c:Person) WHERE c.name in ['Clint Eastwood', 'Gene Hackman'] SET c:Western");

TestUtil.testResult(db,
Expand All @@ -217,7 +217,7 @@ public void testTerminationListBeforeEndNodeList() {
}

@Test
public void testEndNodeListBeforeWhitelist() {
public void testEndNodeFilterBeforeWhitelist() {
db.execute("MATCH (c:Person) WHERE c.name in ['Clint Eastwood', 'Gene Hackman'] SET c:Western");

TestUtil.testResult(db,
Expand Down

0 comments on commit 2697eb3

Please sign in to comment.