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 c67d308 commit 6c64b6eCopy full SHA for 6c64b6e
src/Verify/VerifySettings.cs
@@ -32,11 +32,11 @@ public VerifySettings(VerifySettings? settings)
32
{
33
if (append.Data is ICloneable cloneable)
34
35
- Context.Add(append.Name, cloneable.Clone());
+ AppendValue(append.Name, cloneable.Clone());
36
}
37
else
38
39
- Context.Add(append.Name, append.Data);
+ AppendValue(append.Name, append.Data);
40
41
42
foreach (var pair in settings.Context)
0 commit comments