Skip to content

Commit

Permalink
Fix archetype association (#1087)
Browse files Browse the repository at this point in the history
Signed-off-by: Nandini Chandra <[email protected]>
  • Loading branch information
nachandr authored Apr 22, 2024
1 parent 44c6fcc commit cd23672
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ describe(["@tier2"], "Tests related to application-archetype association ", () =
and Polarion MTA-2464 Assess archetype with multiple questionnaires */
archetype.perform_review("low");
archetype.perform_assessment("low", stakeholders);
// 'Archetype risk' field shows Unknown until all required questionnaires have been taken.
archetype.validateAssessmentField("Unknown");
// 'Archetype risk' field shows unassessed until all required questionnaires have been taken.
archetype.validateAssessmentField("unassessed");
archetype.clickAssessButton();
cy.contains("tr", legacyPathfinder).find("button.retake-button").should("have.length", 1);

Expand Down Expand Up @@ -142,7 +142,7 @@ describe(["@tier2"], "Tests related to application-archetype association ", () =
application2.verifyStatus("assessment", "Not started");
archetypeList[0].perform_assessment("low", stakeholders);
application2.verifyStatus("assessment", "In-progress");
application2.validateAssessmentField("Unknown");
application2.validateAssessmentField("unassessed");
archetypeList[1].perform_assessment("medium", stakeholders);

application2.verifyStatus("assessment", "Completed");
Expand Down

0 comments on commit cd23672

Please sign in to comment.