mirror of
https://github.com/borgbackup/borg.git
synced 2026-06-11 01:41:57 -04:00
Merge pull request #8763 from ThomasWaldmann/ignore-macos-provenance-xattr-1.4
tests: ignore 'com.apple.provenance' xattr (macOS specific)
This commit is contained in:
commit
a6813cea24
1 changed files with 1 additions and 1 deletions
|
|
@ -23,7 +23,7 @@ class XattrTestCase(BaseTestCase):
|
|||
|
||||
def assert_equal_se(self, is_x, want_x):
|
||||
# check 2 xattr lists for equality, but ignore security.selinux attr
|
||||
is_x = set(is_x) - {b'security.selinux'}
|
||||
is_x = set(is_x) - {b'security.selinux', b'com.apple.provenance'}
|
||||
want_x = set(want_x)
|
||||
self.assert_equal(is_x, want_x)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue