Rename MiniYaml MergeLiberal -> MergePartial, MergeStrict -> Merge.
This commit is contained in:
committed by
Oliver Brakmann
parent
abed25d293
commit
a074bb1d4b
@@ -73,9 +73,9 @@ Root2:
|
||||
|
||||
// Merge order should not matter
|
||||
// Note: All the Merge* variants are different plumbing over the same
|
||||
// internal logic. Testing only MergeStrict is sufficient.
|
||||
TestMixedMerge(MiniYaml.MergeStrict(a, b).First().Value);
|
||||
TestMixedMerge(MiniYaml.MergeStrict(b, a).First().Value);
|
||||
// Internal logic. Testing only Merge is sufficient.
|
||||
TestMixedMerge(MiniYaml.Merge(a, b).First().Value);
|
||||
TestMixedMerge(MiniYaml.Merge(b, a).First().Value);
|
||||
}
|
||||
|
||||
void TestMixedMerge(MiniYaml result)
|
||||
|
||||
Reference in New Issue
Block a user