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