Rename to Constants.py
[csit.git] / resources / libraries / python / DPDK / DPDKTools.py
index 4bdc68c..25d2217 100644 (file)
@@ -15,7 +15,7 @@
 """This module implements initialization and cleanup of DPDK environment."""
 
 from resources.libraries.python.ssh import SSH
-from resources.libraries.python.constants import Constants
+from resources.libraries.python.Constants import Constants
 from resources.libraries.python.topology import NodeType, Topology
 
 
@@ -100,7 +100,7 @@ class DPDKTools(object):
         :param node: Dictionary created from topology
         :type node: dict
         :returns: nothing
-        :raise RuntimeError: If command returns nonzero return code.
+        :raises RuntimeError: If command returns nonzero return code.
         """
         arch = Topology.get_node_arch(node)
 
@@ -126,4 +126,3 @@ class DPDKTools(object):
         for node in nodes.values():
             if node['type'] == NodeType.DUT:
                 DPDKTools.install_dpdk_test(node)
-