From 13ee2d93aa4e856e027d81a38dcf0dbab1a66dee Mon Sep 17 00:00:00 2001 From: Viktor Scharf Date: Mon, 22 Apr 2024 11:20:00 +0200 Subject: [PATCH] delete php string deprication (#8911) --- 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 0b6ec311a..5f3e43a9f 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] . "'" );