diff --git a/lib/workers/pr/index.spec.ts b/lib/workers/pr/index.spec.ts
index 7688b49f75563f763ad10d3a99f0f7647fd82b11..52f5719c95b4f2e922761838df8e5a9b5315510c 100644
--- a/lib/workers/pr/index.spec.ts
+++ b/lib/workers/pr/index.spec.ts
@@ -535,7 +535,7 @@ describe('workers/pr', () => {
       platform.getBranchStatus.mockResolvedValueOnce(BranchStatus.yellow);
       platform.getBranchLastCommitTime.mockResolvedValueOnce(new Date());
       const { prResult, pr } = await prWorker.ensurePr(config);
-      expect(prResult).toEqual(PrResult.BlockeddByBranchAutomerge);
+      expect(prResult).toEqual(PrResult.BlockedByBranchAutomerge);
       expect(pr).toBeUndefined();
     });
     it('should not return no PR if branch automerging taking too long', async () => {