Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix SA1129 warning
Fix `SA1129` warning from using default constructor on value type.
  • Loading branch information
martincostello committed Feb 21, 2025
commit 7c0e3d7b755ee5533ba2ecabd3210f2452f30efd
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public void SetTelemetrySource_ShouldThrow()
[Fact]
public void Report_ShouldThrow()
{
var resilienceEvent = new ResilienceEvent();
ResilienceEvent resilienceEvent = default;

Assert.Throws<ArgumentNullException>("context", () => _sut.Report(resilienceEvent, null!, string.Empty));
}
Expand Down
Loading