Skip to content

Commit

Permalink
Refactor all tests to use shorter username (#420)
Browse files Browse the repository at this point in the history
  • Loading branch information
lanedirt committed Nov 25, 2024
1 parent a5c8908 commit 4cef3ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tests/AliasVault.E2ETests/Common/PlaywrightTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ protected async Task SetupPlaywrightBrowserAndContext()
/// </summary>
protected void SetRandomTestUserCredentials()
{
TestUserUsername = $"{Guid.NewGuid()}@test.com";
TestUserUsername = $"{Guid.NewGuid().ToString()[..10]}@test.com";
TestUserPassword = Guid.NewGuid().ToString();
}

Expand Down

0 comments on commit 4cef3ef

Please sign in to comment.