From 9c672b3555bde23a4ba4e2263f6431dbddc5ad0a Mon Sep 17 00:00:00 2001
From: su530201 <olivier.kaufmann@umons.ac.be>
Date: Sat, 22 Apr 2023 16:32:17 +0200
Subject: [PATCH] Fixes bug in dummy_mux due to changes in the abstractmethods

---
 hardware/dummy_mux.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/hardware/dummy_mux.py b/hardware/dummy_mux.py
index 6d3de582..626faff9 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
-- 
GitLab