Skip to content

Commit

Permalink
remove deprecated parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
tb06904 committed Nov 20, 2024
1 parent 4023333 commit 8451fd9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ public GafferPopGraphStep(final GraphStep<S, E> originalGraphStep) {
super(originalGraphStep.getTraversal(), originalGraphStep.getReturnClass(), originalGraphStep.isStartStep(), originalGraphStep.getIds());
LOGGER.debug("Running custom GraphStep on GafferPopGraph");
this.labels = originalGraphStep.getLabels();
this.parameters = originalGraphStep.getParameters();

// Save reference to the graph
GafferPopGraph graph = (GafferPopGraph) originalGraphStep.getTraversal().getGraph().get();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ void shouldReturnExplainOfValidCypherQuery() throws Exception {
@Test
void shouldReturnExplainOfCypherQueryWithExtensions() throws Exception {
// Given (uses the toInteger custom function)
String cypherString = "MATCH (p:person) WHERE p.age > toInteger(22) RETURN p";
String cypherString = "MATCH (p:person) WHERE p.age > toInteger(22) RETURN p.name";

List<String> expectedOperations = Arrays.asList(GetAllElements.class.getName(), Limit.class.getName());

Expand Down

0 comments on commit 8451fd9

Please sign in to comment.