it('should return true when other address is defined', function() {
      contactUpdateDataService.contact = { addresses: [{ type: 'other', value: 'Toulouse' }] };
      initController();
      expect(scope.shouldDisplayOthers()).to.be.true;
    });