diff --git a/aio/aio-builds-setup/dockerbuild/scripts-js/test/clean-up/build-cleaner.spec.ts b/aio/aio-builds-setup/dockerbuild/scripts-js/test/clean-up/build-cleaner.spec.ts index 80e5187b9b..5b530d0f3e 100644 --- a/aio/aio-builds-setup/dockerbuild/scripts-js/test/clean-up/build-cleaner.spec.ts +++ b/aio/aio-builds-setup/dockerbuild/scripts-js/test/clean-up/build-cleaner.spec.ts @@ -15,7 +15,6 @@ const EXISTING_DOWNLOADS = [ '20-1234567-build.zip', ]; const OPEN_PRS = [10, 40]; -const ANY_DATE = jasmine.any(String); // Tests describe('BuildCleaner', () => { @@ -269,14 +268,6 @@ describe('BuildCleaner', () => { prDeferred.resolve([{id: 0, number: 1}, {id: 1, number: 2}, {id: 2, number: 3}]); }); - - it('should log the number of open PRs', () => { - promise.then(prNumbers => { - expect(loggerLogSpy).toHaveBeenCalledWith( - ANY_DATE, 'BuildCleaner: ', `Open pull requests: ${prNumbers}`); - }); - }); - });