Index: tests/test_flush.py =================================================================== diff -u -rf8d379027a25b5497de67aabfb1e11b5e4fd6cbc -rd9310e1930f9237650263dcad07f676439468b50 --- tests/test_flush.py (.../test_flush.py) (revision f8d379027a25b5497de67aabfb1e11b5e4fd6cbc) +++ tests/test_flush.py (.../test_flush.py) (revision d9310e1930f9237650263dcad07f676439468b50) @@ -75,6 +75,13 @@ return info +def get_uv_reactors_info(): + + info = ('Inlet_status, {}, Outlet_status, {}, ' + .format(dg.uv_reactors.inlet_uv_reactor_state, dg.uv_reactors.outlet_uv_reactor_state)) + return info + + def run_flush_mode(): complete_counter = 1 @@ -87,9 +94,10 @@ drain = get_drain_states_info() ro = get_ro_info() conc = get_concentrate_pumps_info() + uv_reactors = get_uv_reactors_info() valves = get_dg_valves_states() - var = flush + load_cell + drain + ro + conc + valves + '\r' + var = flush + load_cell + drain + ro + conc + uv_reactors + valves + '\r' print(var) f.write(var)