- my $msgs = $ibx->search->reopen->query('dfpost:6e006fd7');
- is(scalar(@$msgs), 1, 'diff postimage found');
- my $post = $msgs->[0];
- $msgs = $ibx->search->query('dfpre:090d998b6c2c');
- is(scalar(@$msgs), 1, 'diff preimage found');
- is($post->{blob}, $msgs->[0]->{blob}, 'same message');
+ my $post = $ibx->search->reopen->mset('dfpost:6e006fd7');
+ is($post->size, 1, 'diff postimage found');
+ my $pre = $ibx->search->mset('dfpre:090d998b6c2c');
+ is($pre->size, 1, 'diff preimage found');
+ $pre = $ibx->search->mset_to_smsg($ibx, $pre);
+ $post = $ibx->search->mset_to_smsg($ibx, $post);
+ is(scalar(@$pre), 1, 'diff preimage found');
+ is($post->[0]->{blob}, $pre->[0]->{blob}, 'same message');