diff --git a/lib/requestability_resolver.js b/lib/requestability_resolver.js index 2777666..78782e7 100644 --- a/lib/requestability_resolver.js +++ b/lib/requestability_resolver.js @@ -50,7 +50,6 @@ class RequestabilityResolver { const holdingLocation = DeliveryLocationsResolver.extractLocationCode(item) const nyplCoreLocation = DeliveryLocationsResolver.nyplCoreLocation(holdingLocation) const isSpecialCollectionsOnlyAccessType = !!(nyplCoreLocation?.collectionAccessType === 'special') - console.log(item.holdingLocation, nyplCoreLocation?.collectionAccessType) return !!item.aeonUrl || parentBibHasFindingAid || isSpecialCollectionsOnlyAccessType } } diff --git a/test/requestability_resolver.test.js b/test/requestability_resolver.test.js index 74f0ecb..0106188 100644 --- a/test/requestability_resolver.test.js +++ b/test/requestability_resolver.test.js @@ -181,7 +181,6 @@ describe('RequestabilityResolver', () => { const items = response.hits.hits[0]._source.items const specRequestableItem = items.find((item) => item.uri === 'i10283665777') - console.log(specRequestableItem) expect(specRequestableItem.specRequestable).to.equal(true) })