Merge "NSB NFVi PROX Missing VNF Statistics for CPU Utilization"
[yardstick.git] / yardstick / benchmark / contexts / dummy.py
index 36e8854..9faca4c 100644 (file)
@@ -7,17 +7,18 @@
 # http://www.apache.org/licenses/LICENSE-2.0
 ##############################################################################
 
-from yardstick.benchmark.contexts.base import Context
+from yardstick.benchmark import contexts
+from yardstick.benchmark.contexts import base
 
 
-class DummyContext(Context):
+class DummyContext(base.Context):
     """Class that handle dummy info.
 
     This class is also used to test the abstract class Context because it
     provides a minimal concrete implementation of a subclass.
     """
 
-    __context_type__ = "Dummy"
+    __context_type__ = contexts.CONTEXT_DUMMY
 
     def deploy(self):
         """Don't need to deploy"""