Skip to content

Commit 9edf6fa

Browse files
committed
fix: import ordering
1 parent f7b1655 commit 9edf6fa

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

lib/lib-storage/src/Upload.spec.ts

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,3 @@
1-
import {
2-
CompleteMultipartUploadCommand,
3-
CompleteMultipartUploadCommandOutput,
4-
CreateMultipartUploadCommand,
5-
PutObjectCommand,
6-
PutObjectTaggingCommand,
7-
S3,
8-
S3Client,
9-
UploadPartCommand,
10-
} from "@aws-sdk/client-s3";
11-
import { AbortController } from "@smithy/abort-controller";
121
import { EventEmitter, Readable } from "stream";
132
import { afterAll, afterEach, beforeEach, describe, expect, test as it, vi } from "vitest";
143

@@ -73,6 +62,18 @@ vi.mock("@aws-sdk/client-s3", async () => {
7362
};
7463
});
7564

65+
import {
66+
CompleteMultipartUploadCommand,
67+
CompleteMultipartUploadCommandOutput,
68+
CreateMultipartUploadCommand,
69+
PutObjectCommand,
70+
PutObjectTaggingCommand,
71+
S3,
72+
S3Client,
73+
UploadPartCommand,
74+
} from "@aws-sdk/client-s3";
75+
import { AbortController } from "@smithy/abort-controller";
76+
7677
const DEFAULT_PART_SIZE = 1024 * 1024 * 5;
7778

7879
type Expose = {

0 commit comments

Comments
 (0)