Skip to content

Commit

Permalink
fix help test after bitwise ops became a function
Browse files Browse the repository at this point in the history
  • Loading branch information
jexp committed Mar 9, 2017
1 parent 0f9e1b8 commit 1bb342b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/apoc/help/HelpTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public void tearDown() {
@Test
public void info() throws Exception {
TestUtil.testCall(db,"CALL apoc.help({text})",map("text","bitwise"), (row) -> {
assertEquals("procedure",row.get("type"));
assertEquals("function",row.get("type"));
assertEquals("apoc.bitwise.op",row.get("name"));
assertEquals(true, ((String) row.get("text")).contains("bitwise operations"));
});
Expand Down

0 comments on commit 1bb342b

Please sign in to comment.