Skip to content

Commit f8dc06a

Browse files
Remove redundant test (#6369)
Co-authored-by: Alan West <[email protected]>
1 parent 869d947 commit f8dc06a

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

test/OpenTelemetry.Tests/Trace/LinkTests.cs

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -73,18 +73,6 @@ public void Equality()
7373
Assert.True(link1.Equals(link3));
7474
}
7575

76-
[Fact(Skip = "ActivityLink.Equals is broken in DS7 preview: https://github.com/dotnet/runtime/issues/74026")]
77-
public void Equality_WithAttributes()
78-
{
79-
var link1 = new Link(this.spanContext, this.tags);
80-
var link2 = new Link(this.spanContext, this.tags);
81-
object link3 = new Link(this.spanContext, this.tags);
82-
83-
Assert.Equal(link1, link2);
84-
Assert.True(link1 == link2);
85-
Assert.True(link1.Equals(link3));
86-
}
87-
8876
[Fact]
8977
public void NotEquality()
9078
{

0 commit comments

Comments
 (0)