File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ public void SetupLogging_DebugAndNoDiagnosticLogger_SetsUnityLogger()
9999
100100 Assert . IsNull ( options . DiagnosticLogger ) ; // Sanity check
101101
102- options . SetupLogging ( ) ;
102+ options . SetupUnityLogging ( ) ;
103103
104104 Assert . IsInstanceOf < UnityLogger > ( options . DiagnosticLogger ) ;
105105 }
@@ -111,7 +111,7 @@ public void SetupLogging_DebugFalse_DiagnosticLoggerIsNull()
111111 var options = _fixture . GetSut ( ) ;
112112 options . DiagnosticLogger = new UnityLogger ( options ) ;
113113
114- options . SetupLogging ( ) ;
114+ options . SetupUnityLogging ( ) ;
115115
116116 Assert . IsNull ( options . DiagnosticLogger ) ;
117117 }
@@ -125,7 +125,7 @@ public void SetupLogging_DiagnosticLoggerSet_LeavesOrRemovesDiagnosticLogger(boo
125125 var options = _fixture . GetSut ( ) ;
126126 options . DiagnosticLogger = new UnityLogger ( options ) ;
127127
128- options . SetupLogging ( ) ;
128+ options . SetupUnityLogging ( ) ;
129129
130130 Assert . AreEqual ( debug , options . DiagnosticLogger is not null ) ;
131131 }
You can’t perform that action at this time.
0 commit comments