From 8e38221bf825acff16fe5be5d418c9f0bbb5c9b0 Mon Sep 17 00:00:00 2001 From: BrennanConroy Date: Fri, 1 Apr 2016 11:55:28 -0700 Subject: [PATCH] React to logging changes --- test/E2ETests/Common/XunitLogger.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/E2ETests/Common/XunitLogger.cs b/test/E2ETests/Common/XunitLogger.cs index 510a3799cb..08164bf3b3 100644 --- a/test/E2ETests/Common/XunitLogger.cs +++ b/test/E2ETests/Common/XunitLogger.cs @@ -41,7 +41,7 @@ namespace E2ETests.Common public bool IsEnabled(LogLevel logLevel) => logLevel >= _minLogLevel && !_disposed; - public IDisposable BeginScopeImpl(object state) + public IDisposable BeginScope(TState state) => new NullScope(); private class NullScope : IDisposable