Skip to content

Commit

Permalink
Merge pull request #76 from project-sunbird/FT_dev_failures_fix
Browse files Browse the repository at this point in the history
Duplicate email/username FT fix and location FT removal
  • Loading branch information
bvinayakumar authored Aug 2, 2018
2 parents 09381b2 + 91c54d2 commit fb7520d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public Object[][] deleteLocationFailureDataProvider() {
};
}

@Test(dataProvider = "deleteLocationSuccessDataProvider")
@Test(dataProvider = "deleteLocationSuccessDataProvider", enabled = false)
@CitrusParameters({"testName", "isAuthRequired", "httpStatusCode"})
@CitrusTest
public void testDeleteLocationSuccess(
Expand All @@ -58,7 +58,7 @@ public void testDeleteLocationSuccess(
RESPONSE_JSON);
}

@Test(dataProvider = "deleteLocationFailureDataProvider")
@Test(dataProvider = "deleteLocationFailureDataProvider", enabled = false)
@CitrusParameters({"testName", "isAuthRequired", "httpStatusCode"})
@CitrusTest
public void testDeleteLocationFailure(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ public void testCreateUser(String requestJson, String responseJson, String testN
} else {
HttpClientReceiveActionBuilder response = http().client(restTestClient).receive();
handleUserCreationResponse(response);
this.sleep(Constant.ES_SYNC_WAIT_TIME);
}
}

Expand Down

0 comments on commit fb7520d

Please sign in to comment.