diff --git a/hardware/dummy_mux.py b/hardware/dummy_mux.py index 6d3de58242309f66d41890b9d60ca9218983235b..626faff981881d66bb1f847af58bde333da44933 100644 --- a/hardware/dummy_mux.py +++ b/hardware/dummy_mux.py @@ -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