Skip to content

Commit 439eee3

Browse files
committed
tests
1 parent b2647f3 commit 439eee3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: test/Sentry.Unity.Tests/SentryUnityOptionsExtensionsTests.cs

+3-3
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)