/**
  * @test
  */
 public function it_is_not_same_value_as_itinerary_with_other_list_of_legs()
 {
     $legs = [LegFixture::get(LegFixture::HONGKONG_NEWYORK), LegFixture::get(LegFixture::NEWYORK_HAMBURG)];
     $itinerary = new Itinerary($legs);
     $otherLegs = [LegFixture::get(LegFixture::HONGKONG_HAMBURG), LegFixture::get(LegFixture::HAMBURG_ROTTERDAM)];
     $otherItinerary = new Itinerary($otherLegs);
     $this->assertFalse($itinerary->sameValueAs($otherItinerary));
 }