File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ public void SetupLogging_DebugAndNoDiagnosticLogger_SetsUnityLogger()
99
99
100
100
Assert . IsNull ( options . DiagnosticLogger ) ; // Sanity check
101
101
102
- options . SetupLogging ( ) ;
102
+ options . SetupUnityLogging ( ) ;
103
103
104
104
Assert . IsInstanceOf < UnityLogger > ( options . DiagnosticLogger ) ;
105
105
}
@@ -111,7 +111,7 @@ public void SetupLogging_DebugFalse_DiagnosticLoggerIsNull()
111
111
var options = _fixture . GetSut ( ) ;
112
112
options . DiagnosticLogger = new UnityLogger ( options ) ;
113
113
114
- options . SetupLogging ( ) ;
114
+ options . SetupUnityLogging ( ) ;
115
115
116
116
Assert . IsNull ( options . DiagnosticLogger ) ;
117
117
}
@@ -125,7 +125,7 @@ public void SetupLogging_DiagnosticLoggerSet_LeavesOrRemovesDiagnosticLogger(boo
125
125
var options = _fixture . GetSut ( ) ;
126
126
options . DiagnosticLogger = new UnityLogger ( options ) ;
127
127
128
- options . SetupLogging ( ) ;
128
+ options . SetupUnityLogging ( ) ;
129
129
130
130
Assert . AreEqual ( debug , options . DiagnosticLogger is not null ) ;
131
131
}
You can’t perform that action at this time.
0 commit comments