Skip to content

Commit

Permalink
Merge pull request #17493 from dewniMW/i-test
Browse files Browse the repository at this point in the history
Temporarily disable password recovery enabled in sub-org check
  • Loading branch information
sadilchamishka authored Nov 1, 2023
2 parents 37af079 + 60e4d93 commit dfc5340
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public void createOrganization() throws Exception {
assertNotBlank(createdOrgId);
if (organizationLevel == OrganizationLevel.SUB_ORGANIZATION) {
// Check whether password recovery is enabled in the created sub-organization.
given()
/*given()
.auth().preemptive().oauth2(orgSwitchedToken)
.contentType(ContentType.JSON)
.header(HttpHeaders.ACCEPT, ContentType.JSON)
Expand All @@ -189,7 +189,7 @@ public void createOrganization() throws Exception {
.statusCode(HttpStatus.SC_OK)
.body("properties.find { it.name == 'Recovery.Notification.Password.Enable' }.value",
equalTo("true"))
.body("properties.find { it.name == 'Recovery.NotifySuccess' }.value", equalTo("true"));
.body("properties.find { it.name == 'Recovery.NotifySuccess' }.value", equalTo("true"));*/

// Check whether application creation is disabled in the sub-organization.
Response response = given()
Expand Down

0 comments on commit dfc5340

Please sign in to comment.