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:
Fischlurch 2015-06-14 22:34:22 +02:00
parent 1810d00690
commit f79f4cd82f

View file

@ -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));