Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit cf4ed1b

Browse files
committed
Fix tests
1 parent aed247f commit cf4ed1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/end-to-end-tests/src/usecases/verify.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ module.exports.acceptSasVerification = async function(session, name) {
9393
// verify the toast is for verification
9494
const toastHeader = await requestToast.$("h2");
9595
const toastHeaderText = await session.innerText(toastHeader);
96-
assert.equal(toastHeaderText, 'Verification Request');
96+
assert.equal(toastHeaderText, 'Verification requested');
9797
const toastDescription = await requestToast.$(".mx_Toast_description");
9898
const toastDescText = await session.innerText(toastDescription);
9999
assert.equal(toastDescText.startsWith(name), true,

0 commit comments

Comments
 (0)