Skip to content

Commit

Permalink
create settings based on other settings with correct Append value (#442)
Browse files Browse the repository at this point in the history
  • Loading branch information
coenm authored Nov 28, 2021
1 parent c67d308 commit 6c64b6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Verify/VerifySettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ public VerifySettings(VerifySettings? settings)
{
if (append.Data is ICloneable cloneable)
{
Context.Add(append.Name, cloneable.Clone());
AppendValue(append.Name, cloneable.Clone());
}
else
{
Context.Add(append.Name, append.Data);
AppendValue(append.Name, append.Data);
}
}
foreach (var pair in settings.Context)
Expand Down

0 comments on commit 6c64b6e

Please sign in to comment.