fuse xattr tests: remove freebsd from might-be-broken list

This commit is contained in:
Thomas Waldmann 2019-03-18 22:21:25 +01:00
parent f66c102cc5
commit d79d505d89
1 changed files with 1 additions and 1 deletions

View File

@ -2240,7 +2240,7 @@ class ArchiverTestCase(ArchiverTestCaseBase):
else: else:
assert False, "expected OSError(ENOATTR), but no error was raised" assert False, "expected OSError(ENOATTR), but no error was raised"
except OSError as err: except OSError as err:
if sys.platform.startswith(('freebsd', )) and err.errno == errno.ENOTSUP: if sys.platform.startswith(('nothing_here_now', )) and err.errno == errno.ENOTSUP:
# some systems have no xattr support on FUSE # some systems have no xattr support on FUSE
pass pass
else: else: