Skip to content

Commit

Permalink
Fix misspelled task title
Browse files Browse the repository at this point in the history
  • Loading branch information
matthias-ronge committed Aug 29, 2024
1 parent 1aedace commit d19a4a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Kitodo/src/test/java/org/kitodo/selenium/TasksSortingST.java
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ public void sortByTaskProcessTitle() throws Exception {
public void sortByTaskStatus() throws Exception {
tasksPage.goTo();

// first click on status header should have top task "Progress" or "Processed Some" (both having the same status)
// first click on status header should have top task "Progress" or "Processed and Some" (both having the same status)
tasksPage.clickTaskTableColumnHeaderForSorting(4);
assertTrue("Sorting tasks by status not correct", tasksPage.getFirstRowTaskTitle().matches("Progress|Processed Some"));
assertTrue("Sorting tasks by status not correct", tasksPage.getFirstRowTaskTitle().matches("Progress|Processed and Some"));

// second click on status header should have top task "Open" or "Next Open" (both having the same status)
tasksPage.clickTaskTableColumnHeaderForSorting(4);
Expand Down

0 comments on commit d19a4a3

Please sign in to comment.