From ca4dd89e890781c19cb33a726bb2e43cf4c89d33 Mon Sep 17 00:00:00 2001 From: Leendert de Borst Date: Mon, 2 Dec 2024 17:10:15 +0100 Subject: [PATCH] Update AdminPlaywrightTest.cs (#349) --- src/Tests/AliasVault.E2ETests/Common/AdminPlaywrightTest.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Tests/AliasVault.E2ETests/Common/AdminPlaywrightTest.cs b/src/Tests/AliasVault.E2ETests/Common/AdminPlaywrightTest.cs index 0e60787a2..411b88af9 100644 --- a/src/Tests/AliasVault.E2ETests/Common/AdminPlaywrightTest.cs +++ b/src/Tests/AliasVault.E2ETests/Common/AdminPlaywrightTest.cs @@ -109,6 +109,6 @@ public class AdminPlaywrightTest : PlaywrightTest await WaitForUrlAsync("**", "Users"); var pageContent = await Page.TextContentAsync("body"); - Assert.That(pageContent, Does.Contain("This page gives an overview of all registered users and the associated vaults"), "No entry page content visible after logging in to admin app."); + Assert.That(pageContent, Does.Contain("Welcome to the AliasVault admin portal"), "No entry page content visible after logging in to admin app."); } }