From aec4d2dd81e44d4b65035c4eba604cc128578e80 Mon Sep 17 00:00:00 2001 From: David Shrewsbury Date: Fri, 3 Feb 2017 13:47:39 -0500 Subject: [PATCH] Coalesce zuul and nodepool images in integration Use the same image names in the zuul test that nodepool actually builds. Change-Id: I38d6777fdb52f106505ca5f4ca5d37a36309f57e --- tests/nodepool/test_nodepool_integration.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/nodepool/test_nodepool_integration.py b/tests/nodepool/test_nodepool_integration.py index 881aae784d..ef459e4b6e 100644 --- a/tests/nodepool/test_nodepool_integration.py +++ b/tests/nodepool/test_nodepool_integration.py @@ -53,8 +53,7 @@ class TestNodepoolIntegration(BaseTestCase): # Test a simple node request nodeset = model.NodeSet() - nodeset.addNode(model.Node('controller', 'fake-label')) - nodeset.addNode(model.Node('compute', 'fake-label')) + nodeset.addNode(model.Node('controller', 'fake-nodepool')) job = model.Job('testjob') job.nodeset = nodeset request = self.nodepool.requestNodes(None, job)