Description: Add missing backup_id field
Author: Luan Utimura <luan.utimura@luizalabs.com>
Bug-Debian: https://bugs.debian.org/1123450
Origin: upstream, https://review.opendev.org/c/openstack/python-openstackclient/+/971255
Last-Update: 2025-12-23

Index: python-openstackclient/openstackclient/tests/unit/volume/v3/test_volume.py
===================================================================
--- python-openstackclient.orig/openstackclient/tests/unit/volume/v3/test_volume.py
+++ python-openstackclient/openstackclient/tests/unit/volume/v3/test_volume.py
@@ -37,6 +37,7 @@ class TestVolumeCreate(volume_fakes.Test
     columns = (
         'attachments',
         'availability_zone',
+        'backup_id',
         'bootable',
         'cluster_name',
         'consistencygroup_id',
@@ -78,6 +79,7 @@ class TestVolumeCreate(volume_fakes.Test
         self.datalist = (
             self.volume.attachments,
             self.volume.availability_zone,
+            self.volume.backup_id,
             self.volume.is_bootable,
             self.volume.cluster_name,
             self.volume.consistency_group_id,
@@ -2011,6 +2013,7 @@ class TestVolumeShow(volume_fakes.TestVo
         self.columns = (
             'attachments',
             'availability_zone',
+            'backup_id',
             'bootable',
             'cluster_name',
             'consistencygroup_id',
@@ -2045,6 +2048,7 @@ class TestVolumeShow(volume_fakes.TestVo
         self.data = (
             self.volume.attachments,
             self.volume.availability_zone,
+            self.volume.backup_id,
             self.volume.is_bootable,
             self.volume.cluster_name,
             self.volume.consistency_group_id,
