Skip to content

Commit

Permalink
Reordering of the attendees should not be a signitifcant change (sabr…
Browse files Browse the repository at this point in the history
…e-io#540)

- CodeStyle
  • Loading branch information
floerke committed Sep 10, 2021
1 parent 44d51c5 commit 87dc137
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions tests/VObject/ITip/BrokerSignificantChangesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ public function testSignificantChangesRRuleOrderNoChange()
/**
* Check significant changes detection (no change).
* Reordering of the attendees should not be a signitifcant change (#540)
* https://github.com/sabre-io/vobject/issues/540
* https://github.com/sabre-io/vobject/issues/540.
*/
public function testSignificantChangesAttendeesOrderNoChange()
{
Expand Down Expand Up @@ -141,11 +141,10 @@ public function testSignificantChangesAttendeesOrderNoChange()
$new = str_replace('holger@fruux.com', 'dominik1@fruux.com', $old);
$new = str_replace('dominik@fruux.com', 'holger@fruux.com', $new);
$new = str_replace('dominik1@fruux.com', 'dominik@fruux.com', $new);
$expected = array();
$expected = [];
$expected[] = ['significantChange' => false];
$expected[] = ['significantChange' => false];

$this->parse($old, $new, $expected, 'mailto:martin@fruux.com');
}

}

0 comments on commit 87dc137

Please sign in to comment.