-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIX-12596: fix e2e test as sorting logic was fixed
- Loading branch information
Gleb Nazarov
authored and
Gleb Nazarov
committed
Sep 2, 2024
1 parent
46ebb56
commit e49cfd6
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -58,7 +58,7 @@ public void testAll() { | |
|
||
______TS("verify extend some deadlines, notifyUsers enabled"); | ||
|
||
individualExtensionPage.selectStudents(0, 2); // alice and charlie | ||
individualExtensionPage.selectStudents(0, 3); // alice and charlie | ||
individualExtensionPage.selectInstructor(0); // instructor 1 | ||
|
||
individualExtensionPage.extendDeadlineByTwelveHours(true); | ||
|
@@ -69,7 +69,7 @@ public void testAll() { | |
Map<String, Instant> updatedInstructorDeadlines = updatedSession.getInstructorDeadlines(); | ||
Instant expectedDeadline = feedbackSession.getEndTime().plus(Duration.ofHours(12)); | ||
|
||
verifyUpdatedDeadlinesMap(updatedStudentDeadlines, TestProperties.TEST_EMAIL, "[email protected]"); | ||
verifyUpdatedDeadlinesMap(updatedStudentDeadlines, testEmail, "[email protected]"); | ||
verifyUpdatedDeadlinesMap(updatedInstructorDeadlines, "[email protected]"); | ||
verifyDeadlineExtensionsPresentOrAbsent(updatedStudentDeadlines, updatedInstructorDeadlines, expectedDeadline); | ||
|
||
|
@@ -92,7 +92,7 @@ public void testAll() { | |
updatedStudentDeadlines = updatedSession.getStudentDeadlines(); | ||
updatedInstructorDeadlines = updatedSession.getInstructorDeadlines(); | ||
|
||
verifyUpdatedDeadlinesMap(updatedStudentDeadlines, TestProperties.TEST_EMAIL, "[email protected]"); | ||
verifyUpdatedDeadlinesMap(updatedStudentDeadlines, testEmail, "[email protected]"); | ||
verifyUpdatedDeadlinesMap(updatedInstructorDeadlines, "[email protected]"); | ||
verifyDeadlineExtensionsPresentOrAbsent(updatedStudentDeadlines, updatedInstructorDeadlines, expectedDeadline); | ||
|
||
|