test('Should return false if the \'ontour\' flag is not \'1\'', () => {
      const artistInfo: any = {
        ontour: 'something else than 1'
      };
      expect(provider.isArtistOnTour(artistInfo)).toBeFalsy();