From f53457077a4e6f268994fac40ceddacb01ff665d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=9D=99=E7=A9=8F=E9=9D=84?= <170472707+seionmoya@users.noreply.github.com> Date: Tue, 3 Sep 2024 01:35:26 +0200 Subject: [PATCH] Remove unused code --- Fuyu.Tests/EndToEnd/BackendTest.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/Fuyu.Tests/EndToEnd/BackendTest.cs b/Fuyu.Tests/EndToEnd/BackendTest.cs index 714974d5..9c69f995 100644 --- a/Fuyu.Tests/EndToEnd/BackendTest.cs +++ b/Fuyu.Tests/EndToEnd/BackendTest.cs @@ -15,7 +15,6 @@ namespace Fuyu.Tests.EndToEnd [TestClass] public class BackendTest { - private static HttpClient _fuyuClient; private static HttpClient _eftMainClient; [AssemblyInitialize] @@ -34,7 +33,6 @@ public static void AssemblyInitialize(TestContext testContext) var sessionId = AccountService.LoginAccount("test-username", "test-password"); // create request clients - _fuyuClient = new HttpClient("http://localhost:8000"); _eftMainClient = new HttpClient("http://localhost:8001", sessionId); }