Skip to content

Commit

Permalink
added implementation for assertEquals(String path, T expected, String…
Browse files Browse the repository at this point in the history
… message)
  • Loading branch information
bharathcp committed Mar 24, 2016
1 parent 6bb5c38 commit 76e35ef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public JsonAsserter assertNull(String path, String message) {

@Override
public <T> JsonAsserter assertEquals(String path, T expected, String message) {
return null; //To change body of implemented methods use File | Settings | File Templates.
return assertThat(path, equalTo(expected),message);
}

/**
Expand Down

0 comments on commit 76e35ef

Please sign in to comment.