Commit 9c672b35 authored by Olivier Kaufmann's avatar Olivier Kaufmann
Browse files

Fixes bug in dummy_mux due to changes in the abstractmethods

Showing with 4 additions and 4 deletions
+4 -4
...@@ -12,8 +12,8 @@ class Mux(MuxAbstract): ...@@ -12,8 +12,8 @@ class Mux(MuxAbstract):
def reset(self): def reset(self):
pass pass
def switch(self, elec_dict, state): def switch_one(self, *args):
pass MuxAbstract.switch_one(self, *args)
def test(self): def test(self, *args):
self.exec_logger.info('MUX test finished.') MuxAbstract.test(self, *args)
\ No newline at end of file \ No newline at end of file
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment