diff --git a/test/workers/pr/changelog/index.spec.js b/test/workers/pr/changelog/index.spec.js
index 0adbf5e2fedeed9c03e2207d6040ced884e350c1..81016f33f38cf6927f15970cecd79b4cfe1a17d9 100644
--- a/test/workers/pr/changelog/index.spec.js
+++ b/test/workers/pr/changelog/index.spec.js
@@ -103,15 +103,6 @@ describe('workers/pr/changelog', () => {
         })
       ).toMatchSnapshot();
     });
-    it('returns cached JSON', async () => {
-      ghGot.mockClear();
-      const first = await getChangeLogJSON({ ...upgrade });
-      const firstCallsCount = ghGot.mock.calls.length;
-      const second = await getChangeLogJSON({ ...upgrade });
-      const secondCallsCount = ghGot.mock.calls.length - firstCallsCount;
-      expect(first).toEqual(second);
-      expect(firstCallsCount).toBeGreaterThan(secondCallsCount);
-    });
     it('filters unnecessary warns', async () => {
       ghGot.mockImplementation(() => {
         throw new Error('Unknown Github Repo');