From b945add139e3a31cbc62345f6128548359cc481d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20Leh=C3=B3czky?= Date: Wed, 16 Nov 2022 23:20:30 +0100 Subject: [PATCH] Code styling --- .../Extensions/TestCaseUITestContextExtensions.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Lombiq.Hosting.Tenants.IdleTenantManagement.Tests.UI/Extensions/TestCaseUITestContextExtensions.cs b/Lombiq.Hosting.Tenants.IdleTenantManagement.Tests.UI/Extensions/TestCaseUITestContextExtensions.cs index a6f05a4e..88604e50 100644 --- a/Lombiq.Hosting.Tenants.IdleTenantManagement.Tests.UI/Extensions/TestCaseUITestContextExtensions.cs +++ b/Lombiq.Hosting.Tenants.IdleTenantManagement.Tests.UI/Extensions/TestCaseUITestContextExtensions.cs @@ -8,12 +8,12 @@ public static class TestCaseUITestContextExtensions { public static async Task TestIdleTenantManagerBehaviorAsync(this UITestContext context) { - // We are letting the site to sit idle for more than two minutes so that the - // tenant could be shut down by the background task. + // We are letting the site to sit idle for more than two minutes so that the tenant could be shut down by the + // background task. await Task.Delay(129420); - // If we can access the admin menu after the tenant shut down that means the new shell was created - // and it is working as intended. + // If we can access the admin menu after the tenant shut down that means the new shell was created and it is + // working as intended. await context.SignInDirectlyAsync(); await context.GoToDashboardAsync(); }