From df356fdc867dd9621880b23a6ad055cc6d5c99eb Mon Sep 17 00:00:00 2001 From: Stefan Allius Date: Thu, 22 May 2025 21:34:55 +0200 Subject: [PATCH] fix unit test --- app/tests/test_solarman.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/tests/test_solarman.py b/app/tests/test_solarman.py index 77866cf..cb4f953 100755 --- a/app/tests/test_solarman.py +++ b/app/tests/test_solarman.py @@ -1493,7 +1493,7 @@ async def test_build_modell_800(my_loop, config_tsun_allow_all, inverter_ind_msg m.read() # read complete msg, and dispatch msg assert 800 == m.db.get_db_value(Register.MAX_DESIGNED_POWER, 0) assert 800 == m.db.get_db_value(Register.RATED_POWER, 0) - assert 'TSOL-MSxx00' == m.db.get_db_value(Register.EQUIPMENT_MODEL, 0) + assert 'TSOL-MS800' == m.db.get_db_value(Register.EQUIPMENT_MODEL, 0) m.close() @pytest.mark.asyncio