Skip to content

Commit

Permalink
Ignore ordering in aliases event
Browse files Browse the repository at this point in the history
  • Loading branch information
richvdh committed Oct 31, 2018
1 parent 351691b commit 6a6653a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/30rooms/60version_upgrade.pl
Original file line number Diff line number Diff line change
Expand Up @@ -427,8 +427,8 @@ sub upgrade_room_synced {
})->then( sub {
my ( $new_aliases ) = @_;
assert_deeply_eq(
$new_aliases->{aliases},
[ $room_alias_1, $room_alias_2 ],
[ sort( @{ $new_aliases->{aliases} } ) ],
[ sort( $room_alias_1, $room_alias_2 ) ],
"aliases on new room",
);

Expand Down

0 comments on commit 6a6653a

Please sign in to comment.