From 0fe286be45c76d72c17b4f3e57e0765430273f16 Mon Sep 17 00:00:00 2001 From: su530201 <olivier.kaufmann@umons.ac.be> Date: Thu, 27 Apr 2023 21:23:35 +0200 Subject: [PATCH] Addresses issue #101 --- test_mux_2024.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test_mux_2024.py b/test_mux_2024.py index 68d6ce8a..0b166f67 100644 --- a/test_mux_2024.py +++ b/test_mux_2024.py @@ -8,9 +8,9 @@ MUX_CONFIG['controller'] = controller_module.Controller() MUX_CONFIG['id'] = 'mux_1' MUX_CONFIG['default_mux_cabling'] = {(i+8, j) : ('mux_1', i) for j in ['A', 'B', 'M', 'N'] for i in range(1,9)} mux = Mux(**MUX_CONFIG) -mux.switch_one(elec=1, role='M', state='on') +mux.switch_one(elec=9, role='M', state='on') time.sleep(2) -mux.switch_one(elec=1, role='M', state='off') +mux.switch_one(elec=9, role='M', state='off') mux.switch({'A': [9], 'B': [12], 'M': [10], 'N': [11]}, state='on') time.sleep(8) #mux.switch({'A': [1], 'B': [4], 'M': [2], 'N': [3]}, state='off') -- GitLab