From 59ddcc618e901d14c47a8c1f97bb8589f6a4d5e0 Mon Sep 17 00:00:00 2001 From: Sander Vrijders Date: Mon, 13 Feb 2017 15:00:07 +0100 Subject: testbeds, prototypes: Omit dir name from class name The directory name was always prepended to the class name, but since they are in distinct namespaces this could be easily removed. --- rumba/prototypes/ouroboros.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'rumba/prototypes/ouroboros.py') diff --git a/rumba/prototypes/ouroboros.py b/rumba/prototypes/ouroboros.py index 0f60ee8..172d69a 100644 --- a/rumba/prototypes/ouroboros.py +++ b/rumba/prototypes/ouroboros.py @@ -19,12 +19,12 @@ # MA 02110-1301 USA import rumba.ssh_support as ssh -from rumba.model import Experiment +import rumba.model as mod # An experiment over the Ouroboros implementation -class OuroborosExperiment(Experiment): +class Experiment(mod.Experiment): def __init__(self, testbed, nodes = list()): - Experiment.__init__(self, testbed, nodes) + mod.Experiment.__init__(self, testbed, nodes) def setup_ouroboros(self): cmds = list() -- cgit v1.2.3