Skip to content

Commit 374b2ff

Browse files
committed
Fix bookmark name problems.
refs: MBL-19491 affects: Student release note:
1 parent d942fed commit 374b2ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/student/src/androidTest/java/com/instructure/student/ui/e2e/compose/BookmarksE2ETest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ class BookmarksE2ETest : StudentComposeTest() {
256256
Log.d(STEP_TAG, "Click on the assignment: '${assignment.name}' from the ToDo list.")
257257
toDoListPage.clickOnItem(assignment.name)
258258

259-
val todoBookmarkName = "Todo Assignment Bookmark"
259+
val todoBookmarkName = "First Bookmark"
260260
Log.d(STEP_TAG, "Add a new bookmark with name: '$todoBookmarkName' from the assignment details page.")
261261
Thread.sleep(1000) //Temporary sleep to wait for the assignment details to load properly.
262262
assignmentDetailsPage.addBookmark(todoBookmarkName)
@@ -289,7 +289,7 @@ class BookmarksE2ETest : StudentComposeTest() {
289289
Log.d(STEP_TAG, "Click on the notification about assignment: '${assignment.name}'.")
290290
notificationPage.clickNotification(assignment.name)
291291

292-
val notificationBookmarkName = "Notification Assignment Bookmark"
292+
val notificationBookmarkName = "Second Bookmark"
293293
Log.d(STEP_TAG, "Add a new bookmark with name: '$notificationBookmarkName' from the assignment details page.")
294294
assignmentDetailsPage.addBookmark(notificationBookmarkName)
295295

0 commit comments

Comments
 (0)