From 56e9c28a253a5146e6fa95476fa17f6d720d705e Mon Sep 17 00:00:00 2001
From: Pete Zaitcev <zaitcev@kotori.zaitcev.us>
Date: Wed, 3 Aug 2022 22:47:24 -0500
Subject: [PATCH] Remove forgotten variable _backup_db_fields

Apparently it was left over by accedent in
commit e1ec05dc0da3b53337b1ca6d80d79741dc62c640 for
change I690748e4542880d5e926f3cbf8cedfc86de5cb1f.

Change-Id: I7f91a1114f1d2012f5e1ba6795d822f32e779e0f
---
 .../tests/unit/backup/drivers/test_backup_driver_base.py   | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/cinder/tests/unit/backup/drivers/test_backup_driver_base.py b/cinder/tests/unit/backup/drivers/test_backup_driver_base.py
index b8e651078ff..a4a77338bf1 100644
--- a/cinder/tests/unit/backup/drivers/test_backup_driver_base.py
+++ b/cinder/tests/unit/backup/drivers/test_backup_driver_base.py
@@ -27,13 +27,6 @@ from cinder.tests.unit.backup import fake_service
 from cinder.tests.unit import fake_constants as fake
 from cinder.tests.unit import test
 
-_backup_db_fields = ['id', 'user_id', 'project_id',
-                     'volume_id', 'host', 'availability_zone',
-                     'display_name', 'display_description',
-                     'container', 'status', 'fail_reason',
-                     'service_metadata', 'service', 'size',
-                     'object_count']
-
 
 class BackupBaseDriverTestCase(test.TestCase):