Skip to content

Commit

Permalink
fix method names
Browse files Browse the repository at this point in the history
  • Loading branch information
johnjaylward committed Nov 6, 2017
1 parent 08d93f3 commit dae88d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/test/java/org/json/junit/JSONArrayTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public class JSONArrayTest {
* Tests that the similar method is working as expected.
*/
@Test
public void aaaVerifySimilar() {
public void verifySimilar() {
final String string1 = "HasSameRef";
JSONArray obj1 = new JSONArray()
.put("abc")
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/json/junit/JSONObjectTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public class JSONObjectTest {
* Tests that the similar method is working as expected.
*/
@Test
public void aaaVerifySimilar() {
public void verifySimilar() {
final String string1 = "HasSameRef";
JSONObject obj1 = new JSONObject()
.put("key1", "abc")
Expand Down

0 comments on commit dae88d7

Please sign in to comment.