You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Should work well as we've introduced. Probably some feature break this behaviour. I remember I've implemented it in #93
Your test is still working, however the major difference here is that in your test the non-plus attribute exists while in the example above there is no a attribute to extend.
What works is:
$ cat main.fmf
a: {}
/child:
a+:
b+:
c: d
$ fmf show
/child
a: {'b': {'c': 'd'}}
Based on the promises of Elasticity and Merging I'd expect this fmf file (either main.fmf or arbitrary name in the fmf root)
to produce
'a': {'b': {'c': 'd'}
dictionary. However currently 'a+' and 'b+' is kept as key names.Also the
keeps 'b+' as key name (the 'a' is correctly named.)
Would be nice if one can use Merging everywhere in the Tree structure.
The text was updated successfully, but these errors were encountered: