diff --git a/lib/config/presets/github/index.spec.ts b/lib/config/presets/github/index.spec.ts index 23186b8dd65d74..cc3ec4516a39ad 100644 --- a/lib/config/presets/github/index.spec.ts +++ b/lib/config/presets/github/index.spec.ts @@ -43,9 +43,9 @@ describe(getName(__filename), () => { httpMock .scope(githubApiHost) .get(`${basePath}/default.json`) - .reply(500, {}) + .reply(404, {}) .get(`${basePath}/renovate.json`) - .reply(500, {}); + .reply(200, {}); await expect( github.getPreset({ packageName: 'some/repo' })