Use current class name on super call

In order to get the method resolution correct for setUp in the tests we
need to call super on the current Class not the parent.

Change-Id: I1cf7f45c107a1fad2b70e3b18dc23b8bcc6c4b33
diff --git a/tests/nodepool/test_nodepool_integration.py b/tests/nodepool/test_nodepool_integration.py
index 2c9a9b3..a0f0498 100644
--- a/tests/nodepool/test_nodepool_integration.py
+++ b/tests/nodepool/test_nodepool_integration.py
@@ -28,7 +28,7 @@
     # fake scheduler.
 
     def setUp(self):
-        super(BaseTestCase, self).setUp()
+        super(TestNodepoolIntegration, self).setUp()
 
         self.zk = zuul.zk.ZooKeeper()
         self.zk.connect('localhost:2181')