From 68e5158f08d8d47e8bbb020d9b149389fdd73af6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Mon, 16 Sep 2024 20:26:10 +0200 Subject: [PATCH] Remove unused method. --- Lombiq.Tests.UI/Services/FrontendServer.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Lombiq.Tests.UI/Services/FrontendServer.cs b/Lombiq.Tests.UI/Services/FrontendServer.cs index 2cdd83965..1113a48cb 100644 --- a/Lombiq.Tests.UI/Services/FrontendServer.cs +++ b/Lombiq.Tests.UI/Services/FrontendServer.cs @@ -132,8 +132,6 @@ public void Configure( public FrontendServerContext? GetContext(int orchardPort) => _configuration.CustomConfiguration.GetMaybe(GetKey(orchardPort)) as FrontendServerContext; - public FrontendServerContext? GetContext(UITestContext context) => GetContext(context.TestStartUri.Port); - private string GetKey(int orchardPort) => StringHelper.CreateInvariant($"{nameof(FrontendServer)}:{Name}:{orchardPort}");