Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introduce isleaf to deviceData #5958

Merged
merged 2 commits into from
Oct 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pyanaconda/modules/storage/devicetree/viewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ def _set_device_data(self, device, data):

if isinstance(device, PartitionDevice):
data.attrs["partition-type-name"] = self._get_attribute(device, "part_type_name")
data.attrs["isleaf"] = self._get_attribute(device, "isleaf")

def _set_device_data_dasd(self, device, data):
"""Set data for a DASD device."""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,7 @@ def test_get_parted_device_data(self):

data = self.interface.GetDeviceData("dev1")
assert data['attrs']['partition-type-name'] == "Microsoft reserved partition"
assert data['attrs']['isleaf'] == "True"

def test_get_format_data(self):
"""Test GetFormatData."""
Expand Down