From e6894474bed50454cce70da4516d8098aa9c354a Mon Sep 17 00:00:00 2001 From: Viktor Scharf Date: Mon, 22 Apr 2024 12:24:29 +0200 Subject: [PATCH] delete php string deprication (#8911) (#8912) --- tests/acceptance/features/bootstrap/Sharing.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/acceptance/features/bootstrap/Sharing.php b/tests/acceptance/features/bootstrap/Sharing.php index 0b6ec311a3..5f3e43a9f3 100755 --- a/tests/acceptance/features/bootstrap/Sharing.php +++ b/tests/acceptance/features/bootstrap/Sharing.php @@ -2690,7 +2690,7 @@ trait Sharing { $expectedElementsArray['path'], (string) $elementResponded->path[0], __METHOD__ - . " Expected '${expectedElementsArray['path']}' but got '" + . " Expected '{$expectedElementsArray['path']}' but got '" . $elementResponded->path[0] . "'" ); @@ -2698,7 +2698,7 @@ trait Sharing { $expectedElementsArray['permissions'], (string) $elementResponded->permissions[0], __METHOD__ - . " Expected '${expectedElementsArray['permissions']}' but got '" + . " Expected '{$expectedElementsArray['permissions']}' but got '" . $elementResponded->permissions[0] . "'" );