Skip to content

Commit 19e0690

Browse files
authored
Fix checkpoints test (#8803)
1 parent ad56791 commit 19e0690

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/core/checkpoints/__tests__/checkpoint.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ describe("Checkpoint functionality", () => {
325325
})
326326
expect(vscode.commands.executeCommand).toHaveBeenCalledWith(
327327
"vscode.changes",
328-
"errors.checkpoint_diff_to_current",
328+
"common:errors.checkpoint_diff_to_current",
329329
expect.any(Array),
330330
)
331331
})
@@ -350,7 +350,7 @@ describe("Checkpoint functionality", () => {
350350
})
351351
expect(vscode.commands.executeCommand).toHaveBeenCalledWith(
352352
"vscode.changes",
353-
"errors.checkpoint_diff_with_next",
353+
"common:errors.checkpoint_diff_with_next",
354354
expect.any(Array),
355355
)
356356
})
@@ -385,7 +385,7 @@ describe("Checkpoint functionality", () => {
385385
mode: "to-current",
386386
})
387387

388-
expect(vscode.window.showInformationMessage).toHaveBeenCalledWith("errors.checkpoint_no_changes")
388+
expect(vscode.window.showInformationMessage).toHaveBeenCalledWith("common:errors.checkpoint_no_changes")
389389
expect(vscode.commands.executeCommand).not.toHaveBeenCalled()
390390
})
391391

0 commit comments

Comments
 (0)