Skip to content

Commit

Permalink
IDE0090
Browse files Browse the repository at this point in the history
  • Loading branch information
davidnmbond committed Dec 7, 2023
1 parent 16853fe commit 239988b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LogicMonitor.Api.Test/Websites/WebsiteGroupTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public async Task WebsiteGroupCreationShouldSetProperties()
websiteGroup.StopMonitoring.Should().BeFalse();
websiteGroup.FullPath.Should().Be("Test Name");
websiteGroup.ParentId.Should().Be(1);
websiteGroup.CustomProperties.Should().BeEquivalentTo(new List<EntityProperty> { new EntityProperty { Name = "name", Value = "value" } });
websiteGroup.CustomProperties.Should().BeEquivalentTo(new List<EntityProperty> { new() { Name = "name", Value = "value" } });
}
finally
{
Expand Down

0 comments on commit 239988b

Please sign in to comment.