Skip to content

Commit 4cb8a65

Browse files
committed
style(test): Adjust import order in patch.test.ts
This commit updates the import order in the `patch.test.ts` file. This change is likely due to automated linting or code style adjustments and does not affect the logic of the tests.
1 parent 317c061 commit 4cb8a65

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/logics/parse/patch.test.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
import { describe, expect, it } from "bun:test";
22

3-
import { parseGitPatch } from "./patch.js";
43
import {
5-
mockSingleCommit,
6-
mockMultipleCommits,
7-
mockNoMessageLinesAfterSubject,
8-
mockNoDiff,
4+
mockCreateWorkerPlaceholder,
5+
mockLongTrickyMessage,
96
mockMalformed,
7+
mockMultipleCommits,
108
mockMultipleFilesAndHunks,
11-
mockLongTrickyMessage,
12-
mockCreateWorkerPlaceholder,
9+
mockNoDiff,
10+
mockNoMessageLinesAfterSubject,
11+
mockSingleCommit,
1312
} from "../../mocks/patch.js";
13+
import { parseGitPatch } from "./patch.js";
1414

1515
describe("parseGitPatch", () => {
1616
it("parses a single commit patch", () => {

0 commit comments

Comments
 (0)