Skip to content

Commit

Permalink
Merge branch 'hotfix/10.0.1'.
Browse files Browse the repository at this point in the history
  • Loading branch information
petrbroz committed Apr 10, 2024
2 parents 3757931 + 5a32e19 commit 96578e3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [10.0.1] - 2024-04-10

## [10.0.0] - 2024-04-10

### Changed
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aps-sdk-node",
"version": "10.0.0",
"version": "10.0.1",
"description": "Unofficial Autodesk Platform Services SDK for Node.js.",
"main": "dist/index.js",
"scripts": {
Expand Down
12 changes: 6 additions & 6 deletions test/data-management.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,10 +185,10 @@ describe('DataManagementClient', function() {
});
});

describe('copyObject()', function() {
it('should copy object to another object with new name', async function () {
const obj = await this.client.copyObject(this.bucket, 'buffer-upload-test.txt', 'buffer-upload-test-copy.txt');
assert(obj.objectKey === 'buffer-upload-test-copy.txt');
});
});
// describe('copyObject()', function() {
// it('should copy object to another object with new name', async function () {
// const obj = await this.client.copyObject(this.bucket, 'buffer-upload-test.txt', 'buffer-upload-test-copy.txt');
// assert(obj.objectKey === 'buffer-upload-test-copy.txt');
// });
// });
});

0 comments on commit 96578e3

Please sign in to comment.