File tree 2 files changed +8
-7
lines changed
test/Elmah.Io.Umbraco.Test
2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 4
4
<TargetFrameworks >net6.0;net7.0;net8.0;net9.0</TargetFrameworks >
5
5
<ImplicitUsings >enable</ImplicitUsings >
6
6
<Nullable >enable</Nullable >
7
+ <LangVersion >12.0</LangVersion >
7
8
</PropertyGroup >
8
9
9
10
<ItemGroup >
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ public void SetUp()
53
53
public async Task CanNotifyHealthy ( )
54
54
{
55
55
// Arrange
56
- var checks = await HealthCheckResults . Create ( new List < HealthCheck > ( ) ) ;
56
+ var checks = await HealthCheckResults . Create ( [ ] ) ;
57
57
58
58
// Act
59
59
await sut . SendAsync ( checks ) ;
@@ -66,10 +66,10 @@ public async Task CanNotifyHealthy()
66
66
public async Task CanNotifyUnhealthy ( )
67
67
{
68
68
// Arrange
69
- var checks = await HealthCheckResults . Create ( new List < HealthCheck >
70
- {
69
+ var checks = await HealthCheckResults . Create (
70
+ [
71
71
new TestHealthCheck ( )
72
- } ) ;
72
+ ] ) ;
73
73
var markdown = checks . ResultsAsMarkDown ( HealthCheckNotificationVerbosity . Summary ) ;
74
74
75
75
// Act
@@ -90,13 +90,13 @@ public override HealthCheckStatus ExecuteAction(HealthCheckAction action)
90
90
91
91
public override Task < IEnumerable < HealthCheckStatus > > GetStatus ( )
92
92
{
93
- return Task . FromResult < IEnumerable < HealthCheckStatus > > ( new List < HealthCheckStatus >
94
- {
93
+ return Task . FromResult < IEnumerable < HealthCheckStatus > > (
94
+ [
95
95
new ( "Oh no" )
96
96
{
97
97
ResultType = StatusResultType . Error
98
98
}
99
- } ) ;
99
+ ] ) ;
100
100
}
101
101
}
102
102
}
You can’t perform that action at this time.
0 commit comments