Skip to content

Commit

Permalink
fix(test): fix method args
Browse files Browse the repository at this point in the history
Signed-off-by: Teclib <skita@teclib.com>
  • Loading branch information
stonebuzz committed Apr 7, 2022
1 parent 56ea300 commit 2c2a5ea
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public void createXMLTest() throws Exception {
mContent.add(categories);

try {
String xml = Utils.createXML(appContext, mContent, "Agent", false, "test-tag");
String xml = Utils.createXML(appContext, mContent, "Agent", false, "test-tag", "Computer");
assertTrue(true);
} catch (Exception ex) {
assertTrue(false);
Expand All @@ -77,7 +77,7 @@ public void createJSONTest() throws Exception {

mContent.add(categories);

String json = Utils.createJSON(appContext, mContent, "Agent", false, "test-tag");
String json = Utils.createJSON(appContext, mContent, "Agent", false, "test-tag", "Computer");

try {
JSONObject objJson = new JSONObject(json);
Expand Down

0 comments on commit 2c2a5ea

Please sign in to comment.