From d47af2710e0448f27fc10c75d0f5d8accf350fde Mon Sep 17 00:00:00 2001 From: Sam Yaple Date: Fri, 23 Oct 2015 20:22:04 +0000 Subject: [PATCH] Update the super function name Change-Id: Ifeefe3c146e6b5e118956024c769e71b2e506a5b Partially-Implements: blueprint functional-testing-gate --- tests/test_build.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_build.py b/tests/test_build.py index 948e165ac6..cd4ee54b82 100644 --- a/tests/test_build.py +++ b/tests/test_build.py @@ -87,7 +87,7 @@ class BuildTestUbuntuSource(BuildTest): class DeployTestCentosBinary(BuildTest): def setUp(self): - super(BuildTestCentosBinary, self).setUp() + super(DeployTestCentosBinary, self).setUp() self.build_args.extend(["--base", "centos", "--type", "binary", "--profile", "gate"]) @@ -95,7 +95,7 @@ class DeployTestCentosBinary(BuildTest): class DeployTestCentosSource(BuildTest): def setUp(self): - super(BuildTestCentosSource, self).setUp() + super(DeployTestCentosSource, self).setUp() self.build_args.extend(["--base", "centos", "--type", "source", "--profile", "gate"]) @@ -103,7 +103,7 @@ class DeployTestCentosSource(BuildTest): class DeployTestUbuntuSource(BuildTest): def setUp(self): - super(BuildTestUbuntuSource, self).setUp() + super(DeployTestUbuntuSource, self).setUp() self.build_args.extend(["--base", "ubuntu", "--type", "source", "--profile", "gate"])