From 90a6d8fdf709f13538c810ffb553e4c14a7cd720 Mon Sep 17 00:00:00 2001 From: Pawel Kadluczka Date: Fri, 14 Jul 2017 08:20:11 -0700 Subject: [PATCH] Shortening log path CI is failing with PathTooLongException --- test/Common/ServerFixture.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Common/ServerFixture.cs b/test/Common/ServerFixture.cs index c78a686bd1..e79e4caf90 100644 --- a/test/Common/ServerFixture.cs +++ b/test/Common/ServerFixture.cs @@ -28,7 +28,7 @@ namespace Microsoft.AspNetCore.SignalR.Tests.Common public ServerFixture() { var testLog = AssemblyTestLog.ForAssembly(typeof(ServerFixture).Assembly); - _logToken = testLog.StartTestLog(null, typeof(ServerFixture).FullName, out _loggerFactory, "ServerFixture"); + _logToken = testLog.StartTestLog(null, $"{nameof(ServerFixture)}_{typeof(TStartup).Name}" , out _loggerFactory, "ServerFixture"); _logger = _loggerFactory.CreateLogger>(); StartServer();