We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 869d947 commit f8dc06aCopy full SHA for f8dc06a
test/OpenTelemetry.Tests/Trace/LinkTests.cs
@@ -73,18 +73,6 @@ public void Equality()
73
Assert.True(link1.Equals(link3));
74
}
75
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
88
[Fact]
89
public void NotEquality()
90
{
0 commit comments