SubmittedTogether: Use WalkSorter in the open case as well

MergeSuperSet doesn't return the most useful ordering, so use
something more stable, and be consistent with the merged case.

Change-Id: Ia9dd6efe307dcf2c5535f49f7e6d38fc9bd06545
This commit is contained in:
Dave Borowitz
2015-10-12 13:12:56 -04:00
parent 8fb3de1b45
commit b729d3e82b
2 changed files with 17 additions and 15 deletions

View File

@@ -61,8 +61,8 @@ public class SubmitByFastForwardIT extends AbstractSubmit {
assertSubmitter(change2.getChangeId(), 1);
assertPersonEquals(admin.getIdent(), head.getAuthorIdent());
assertPersonEquals(admin.getIdent(), head.getCommitterIdent());
assertSubmittedTogether(id1, id1, id2);
assertSubmittedTogether(id2, id1, id2);
assertSubmittedTogether(id1, id2, id1);
assertSubmittedTogether(id2, id2, id1);
}
@Test