Skip to content

Commit

Permalink
update test for root level dataset properties
Browse files Browse the repository at this point in the history
In OpenZFS 2.3 the meaning of xattr=on changed from dir to sa
which means that "ON" is now the expected value for the top-level
dataset of a new zpool.
  • Loading branch information
anodos325 committed Oct 11, 2024
1 parent 00dfd2c commit b7c4340
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/api2/test_006_pool_and_sysds.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def test__check_root_level_dataset_properties():
ds = call('pool.dataset.get_instance', pool_name)
assert ds['acltype']['value'] == 'POSIX'
assert ds['aclmode']['value'] == 'DISCARD'
assert ds['xattr']['value'] == 'SA'
assert ds['xattr']['value'] == 'ON'
assert ds['deduplication']['value'] == 'OFF'
assert ds['casesensitivity']['value'] == 'SENSITIVE'
assert ds['compression']['value'] == 'LZ4'
Expand Down

0 comments on commit b7c4340

Please sign in to comment.