Fix UseAzureAppServices_RegisterLogger test

This commit is contained in:
BrennanConroy 2017-05-02 16:47:08 -07:00
parent 0faf6a21ce
commit 1ca8374028
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ namespace Microsoft.AspNetCore.Hosting.Azure.AppServices.Tests
mock.Object.UseAzureAppServices();
mock.Verify(builder => builder.ConfigureLogging(It.IsNotNull<Action<LoggerFactory>>()), Times.Once);
mock.Verify(builder => builder.ConfigureLogging(It.IsNotNull<Action<WebHostBuilderContext, LoggerFactory>>()), Times.Once);
}
}
}