Skip to content

Commit

Permalink
- update blob service version in constants.ts
Browse files Browse the repository at this point in the history
- remove .only from test
  • Loading branch information
jeremymeng committed Jul 20, 2023
1 parent ffa6549 commit 8ebe373
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion sdk/storage/storage-blob/src/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Licensed under the MIT license.

export const SDK_VERSION: string = "12.20.0";
export const SERVICE_VERSION: string = "2021-10-04";
export const SERVICE_VERSION: string = "2023-01-03";

export const BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES: number = 256 * 1024 * 1024; // 256MB
export const BLOCK_BLOB_MAX_STAGE_BLOCK_BYTES: number = 4000 * 1024 * 1024; // 4000MB
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ describe("AppendBlobClient Node.js only", () => {
assert.equal(downloadResponse.contentLength!, content.length * 2);
});

it.only("appendBlock - append large block", async function (this:Context) {
it("appendBlock - append large block", async function (this: Context) {
if (!isLiveMode()) {
// Recorder file larger than github limitation
this.skip();
Expand Down

0 comments on commit 8ebe373

Please sign in to comment.