Skip to content

Commit 42e9266

Browse files
ThomasWaldmannNikratio
authored andcommitted
test_api: fix wrong skip message
1 parent fd897a0 commit 42e9266

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/test_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def test_xattr():
7373
pyfuse3.setxattr(fh.name, key, value)
7474
except OSError as exc:
7575
if exc.errno == errno.ENOTSUP:
76-
pytest.skip('ACLs not supported for %s' % fh.name)
76+
pytest.skip('xattrs not supported for %s' % fh.name)
7777
raise
7878
assert _getxattr_helper(fh.name, key) == value
7979

0 commit comments

Comments
 (0)