aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--functest/opnfv_tests/openstack/vgpu/vgpu.py4
-rw-r--r--setup.cfg2
2 files changed, 3 insertions, 3 deletions
diff --git a/functest/opnfv_tests/openstack/vgpu/vgpu.py b/functest/opnfv_tests/openstack/vgpu/vgpu.py
index a900eb203..12f183e4e 100644
--- a/functest/opnfv_tests/openstack/vgpu/vgpu.py
+++ b/functest/opnfv_tests/openstack/vgpu/vgpu.py
@@ -16,7 +16,7 @@ import logging
from functest.core import singlevm
-class vGPU(singlevm.SingleVm2):
+class VGPU(singlevm.SingleVm2):
"""OpenStack vGPU Test Case."""
__logger = logging.getLogger(__name__)
@@ -35,7 +35,7 @@ class vGPU(singlevm.SingleVm2):
"""Initialize vGPU testcase object."""
if "case_name" not in kwargs:
kwargs["case_name"] = "vgpu"
- super(vGPU, self).__init__(**kwargs)
+ super(VGPU, self).__init__(**kwargs)
def execute(self):
"""
diff --git a/setup.cfg b/setup.cfg
index 954dcaa9a..94d3f6c14 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -36,7 +36,7 @@ xtesting.testcase =
vmtp = functest.opnfv_tests.openstack.vmtp.vmtp:Vmtp
shaker = functest.opnfv_tests.openstack.shaker.shaker:Shaker
snaps_smoke = functest.opnfv_tests.openstack.snaps.smoke:SnapsSmoke
- vgpu = functest.opnfv_tests.openstack.vgpu.vgpu:vGPU
+ vgpu = functest.opnfv_tests.openstack.vgpu.vgpu:VGPU
rally_full = functest.opnfv_tests.openstack.rally.rally:RallyFull
cloudify = functest.core.cloudify:Cloudify
cloudify_ims = functest.opnfv_tests.vnf.ims.cloudify_ims:CloudifyIms