From 7318fde6a0dea6d8782e47fb97017ffaacabfa7f Mon Sep 17 00:00:00 2001 From: Viktor Scharf Date: Thu, 4 Dec 2025 14:24:57 +0100 Subject: [PATCH] fix-get-attribute-test (#1974) --- tests/acceptance/bootstrap/CliContext.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/acceptance/bootstrap/CliContext.php b/tests/acceptance/bootstrap/CliContext.php index 082d3894a3..c87f640cbe 100644 --- a/tests/acceptance/bootstrap/CliContext.php +++ b/tests/acceptance/bootstrap/CliContext.php @@ -904,7 +904,7 @@ class CliContext implements Context { $userUuid = $this->featureContext->getAttributeOfCreatedUser($user, 'id'); $storagePath = $this->getUsersStoragePath(); $body = [ - "command" => "xattr -p -slz " . escapeshellarg($attribute) . " $storagePath/$userUuid/$file", + "command" => "getfattr -n " . escapeshellarg($attribute) . " --only-values $storagePath/$userUuid/$file", "raw" => true ]; $this->featureContext->setResponse(CliHelper::runCommand($body));