Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Storage/src/StorageObject.php
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ public function rewrite($destination, array $options = [])
}

/**
* Move an object within a bucket with HNS enabled.
* Move an object within a bucket.
*
* This method copies data using multiple requests so large objects can be
* copied with a normal length timeout per request rather than one very long
Expand Down
3 changes: 1 addition & 2 deletions Storage/tests/System/ManageObjectsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,6 @@ public function testMoveObject()
self::$client,
$name,
[
'hierarchicalNamespace' => ['enabled' => true,],
Comment thread
thiyaguk09 marked this conversation as resolved.
'iamConfiguration' => ['uniformBucketLevelAccess' => ['enabled' => true]]
]
);
Expand All @@ -380,7 +379,7 @@ public function testMoveObject()
// Move the object.
$movedObject = $object->move($destinationObjectName);

// Assert that check existance of source and destination object.
// Assert that check existence of source and destination object.
$this->assertStorageObjectNotExists($sourceBucket, $object);
$this->assertStorageObjectExists($sourceBucket, $movedObject);
}
Expand Down