it("should set/unset changes to a collection's language code", () => {
    expect(_sampleCollection.getLanguageCode()).toEqual('en');
    collectionUpdateService.setCollectionLanguageCode(_sampleCollection, 'fi');
    expect(_sampleCollection.getLanguageCode()).toEqual('fi');