mirror of
https://gitlab.com/apparmor/apparmor.git
synced 2025-03-04 08:24:42 +01:00
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:
parent
2e77129e15
commit
8c16fb2700
1 changed files with 2 additions and 2 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Reference in a new issue