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 ab6b4c3 commit f62f8b4Copy full SHA for f62f8b4
tracer/test/Datadog.Trace.Tests/Configuration/MutableSettingsTests.cs
@@ -65,6 +65,10 @@ public void Equality()
65
66
// TODO: test that changing this changes the settings. Currently this is always false, so can't test it
67
properties.Remove(nameof(MutableSettings.CustomSamplingRulesIsRemote));
68
+
69
+ // This property depends directly on ServiceName, and so isn't required to be part of the equality tests
70
+ // We _could_ add it though if that's preferable
71
+ properties.Remove(nameof(MutableSettings.DefaultServiceName));
72
properties.Should().BeEmpty("should compare all properties as part of MutableSettings, but some properties were not used");
73
}
74
0 commit comments