File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ public void UseNoIndentation()
87
87
public void UsePropertyFilter ( )
88
88
{
89
89
// Arrange
90
- PropertyFilter filterProperty = ( logEvent , propertyName ) => throw new NotImplementedException ( ) ;
90
+ PropertyFilter filterProperty = ( logEvent , propertyName ) => true ;
91
91
92
92
// Act
93
93
var builder = new Log4NetTextFormatterOptionsBuilder ( ) . UsePropertyFilter ( filterProperty ) ;
@@ -111,7 +111,7 @@ public void SettingPropertyFilterToNullThrowsArgumentNullException()
111
111
public void UseExceptionFormatter ( )
112
112
{
113
113
// Arrange
114
- ExceptionFormatter formatException = exception => throw new NotImplementedException ( ) ;
114
+ ExceptionFormatter formatException = exception => "" ;
115
115
116
116
// Act
117
117
var builder = new Log4NetTextFormatterOptionsBuilder ( ) . UseExceptionFormatter ( formatException ) ;
You can’t perform that action at this time.
0 commit comments