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):
def reset(self):
pass
def switch(self, elec_dict, state):
pass
def switch_one(self, *args):
MuxAbstract.switch_one(self, *args)
def test(self):
self.exec_logger.info('MUX test finished.')
\ No newline at end of file
def test(self, *args):
MuxAbstract.test(self, *args)
\ 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