Skip to content

Commit

Permalink
Fix Log4net tests
Browse files Browse the repository at this point in the history
  • Loading branch information
karolz-ms authored Aug 19, 2018
1 parent 1ac7094 commit 0c46890
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public void ValidConfigurationCanWrtieToInputPipleine()
new IFilter[0],
new[] { new EventSink(mockOutput.Object, new IFilter[0]) }))
{
var logger = LogManager.GetLogger("EventFlow", typeof(Log4NetInputTests));
var logger = LogManager.GetLogger("EventFlowRepo", typeof(Log4NetInputTests));
logger.Info("some message");
}
mockOutput.Verify(
Expand All @@ -90,7 +90,7 @@ public void LowerLevelDefinedDoesNotWriteToPipeline()
new IFilter[0],
new[] { new EventSink(mockOutput.Object, new IFilter[0]) }))
{
var logger = LogManager.GetLogger("EventFlow", typeof(Log4NetInputTests));
var logger = LogManager.GetLogger("EventFlowRepo", typeof(Log4NetInputTests));
logger.Debug("some message");
}
mockOutput.Verify(
Expand Down

0 comments on commit 0c46890

Please sign in to comment.