Skip to content

Commit

Permalink
delete php string deprication (#8911)
Browse files Browse the repository at this point in the history
  • Loading branch information
ScharfViktor committed Apr 22, 2024
1 parent 1f0b853 commit 13ee2d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/acceptance/features/bootstrap/Sharing.php
Original file line number Diff line number Diff line change
Expand Up @@ -2690,15 +2690,15 @@ public function checkPublicShares(string $user, string $path, ?TableNode $TableN
$expectedElementsArray['path'],
(string) $elementResponded->path[0],
__METHOD__
. " Expected '${expectedElementsArray['path']}' but got '"
. " Expected '{$expectedElementsArray['path']}' but got '"
. $elementResponded->path[0]
. "'"
);
Assert::assertEquals(
$expectedElementsArray['permissions'],
(string) $elementResponded->permissions[0],
__METHOD__
. " Expected '${expectedElementsArray['permissions']}' but got '"
. " Expected '{$expectedElementsArray['permissions']}' but got '"
. $elementResponded->permissions[0]
. "'"
);
Expand Down

0 comments on commit 13ee2d9

Please sign in to comment.