From 58495bc584999e5e61b04fd39b8ea70eb5ebd42f Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Sat, 24 May 2025 02:40:50 +0000 Subject: [PATCH] style: Fix formatting in gitCommand.test.ts Co-Authored-By: Kazuki Yamada --- tests/core/git/gitCommand.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/core/git/gitCommand.test.ts b/tests/core/git/gitCommand.test.ts index ce8f8911..a349315d 100644 --- a/tests/core/git/gitCommand.test.ts +++ b/tests/core/git/gitCommand.test.ts @@ -359,7 +359,7 @@ c3d4e5f6g7h8i9j0k1l2m3n4o5p6q7r8\trefs/tags/v1.0.0 const mockFileExecAsync = vi.fn(); await expect(getRemoteRefs('invalid-url', { execFileAsync: mockFileExecAsync })).rejects.toThrow( - "Invalid URL protocol for 'invalid-url'. URL must start with 'git@' or 'https://'" + "Invalid URL protocol for 'invalid-url'. URL must start with 'git@' or 'https://'", ); expect(mockFileExecAsync).not.toHaveBeenCalled();