Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
erdemgurell committed Mar 27, 2024
1 parent f379245 commit c4f4313
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/US_409/PatientRecordMerge.java
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,8 @@ public void secondPatient() {
ID2 = ome.patientID.getText();

ome.myClick(ome.homePageBtn);


}

@Test(priority = 4)
Expand All @@ -138,13 +140,13 @@ public void patientRecordMerge() {
new Actions(driver).sendKeys(Keys.ENTER).build().perform();
ome.myClick(ome.mergeContinueBtn);

pp.verifyContainsText(ome.beforeMergeMessage,"undone");
pp.verifyContainsText(ome.beforeMergeMessage, "undone");

ome.myClick(ome.secondPatient);
ome.myClick(ome.mergeContinueBtn);


// Assertion for success message
Assert.assertEquals(ome.mergedPatientIDs.size(),2);
Assert.assertEquals(ome.mergedPatientIDs.size(), 2);
}
}

0 comments on commit c4f4313

Please sign in to comment.