tests: fix incorrect setfattr call in xattrs_profile

The file was quoted with the following space, making the test broken.

Signed-off-by: Zygmunt Krynicki <me@zygoon.pl>
This commit is contained in:
Zygmunt Krynicki 2024-11-21 15:44:44 +01:00
parent 2e77129e15
commit 8c16fb2700

View file

@ -27,8 +27,8 @@ requires_kernel_features policy/outofband
clean_xattr()
{
setfattr --remove=user.foo "$file" 2> /dev/null || true
setfattr --remove=user.bar "$file "2> /dev/null || true
setfattr --remove=user.spam "$file "2> /dev/null || true
setfattr --remove=user.bar "$file" 2> /dev/null || true
setfattr --remove=user.spam "$file" 2> /dev/null || true
}
set_xattr()