From ae0cf574f4bef5bcc9b855ee43a3a782a680b16f Mon Sep 17 00:00:00 2001 From: James Parker Date: Wed, 10 Jun 2020 12:23:04 -0400 Subject: [PATCH] Remove setup_clients from VirtioSCSIDisk The class method setup_clients in test_virtio_scsi_attach.VirtioSCSIDisk is not necessary for the test. It was part of an earlier attempt at executing the tests and is not needed. Removing the entire method with this commit. Change-Id: I3dc0b5c71e1f53c3e386c58e32e5ef2db26893bd --- .../api/compute/test_virtio_scsi_attach.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/whitebox_tempest_plugin/api/compute/test_virtio_scsi_attach.py b/whitebox_tempest_plugin/api/compute/test_virtio_scsi_attach.py index 35fa293a..5ce01b1f 100644 --- a/whitebox_tempest_plugin/api/compute/test_virtio_scsi_attach.py +++ b/whitebox_tempest_plugin/api/compute/test_virtio_scsi_attach.py @@ -32,12 +32,6 @@ class VirtioSCSIDisk(base.BaseWhiteboxComputeTest): # appropriately disks_to_create = 7 - @classmethod - def setup_clients(cls): - super(VirtioSCSIDisk, cls).setup_clients() - cls.admin_scheduler_stats_client = \ - cls.os_admin.volume_scheduler_stats_client_latest - def setUp(self): super(VirtioSCSIDisk, self).setUp() # NOTE: Flavor and image are common amongst every test of the class