WIP: fix -- revert back
I had added this variation just to check compilation and forgot to revert ist. Of course, we do *not* want to move the inwards of our Mutator in the test. Rather, we want to draw a copy from the mutated state
This commit is contained in:
parent
1810d00690
commit
f79f4cd82f
1 changed files with 1 additions and 1 deletions
|
|
@ -275,7 +275,7 @@ namespace test{
|
|||
mut.appendChild("a");
|
||||
mut.set("a", "1");
|
||||
|
||||
RecS aa(std::move(mut));
|
||||
RecS aa(mut);
|
||||
CHECK (a != aa);
|
||||
CHECK ("u" == aa.getType());
|
||||
CHECK (Seq({"type=u", "a=1", "a"}) == contents(aa));
|
||||
|
|
|
|||
Loading…
Reference in a new issue