Remove redundant test (#6369)

Co-authored-by: Alan West <3676547+alanwest@users.noreply.github.com>
This commit is contained in:
Martin Costello 2025-07-15 01:03:46 +01:00 committed by GitHub
parent 869d9475ef
commit f8dc06acf2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 12 deletions

View File

@ -73,18 +73,6 @@ public sealed class LinkTests : IDisposable
Assert.True(link1.Equals(link3));
}
[Fact(Skip = "ActivityLink.Equals is broken in DS7 preview: https://github.com/dotnet/runtime/issues/74026")]
public void Equality_WithAttributes()
{
var link1 = new Link(this.spanContext, this.tags);
var link2 = new Link(this.spanContext, this.tags);
object link3 = new Link(this.spanContext, this.tags);
Assert.Equal(link1, link2);
Assert.True(link1 == link2);
Assert.True(link1.Equals(link3));
}
[Fact]
public void NotEquality()
{