From cc76b348b4e4cc7bd9594e7ac26d3f3a7888343f Mon Sep 17 00:00:00 2001 From: Wang Zhiyong Date: Tue, 24 Sep 2024 08:34:29 +0000 Subject: [PATCH] fix test case error --- test/integration/test_ha_procedure.py | 2 +- test/integration/test_procedure.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/test_ha_procedure.py b/test/integration/test_ha_procedure.py index 9bcdabbca..89c5d0820 100644 --- a/test/integration/test_ha_procedure.py +++ b/test/integration/test_ha_procedure.py @@ -503,7 +503,7 @@ def test_procedure(self): procedures = json.loads(ret[1]) #TODO when this assert failed , you should add the additional procedure test code or remove the deleted procedure test code log.info("procedures count : %s", len(procedures)) - assert len(procedures) == 108 + assert len(procedures) == 109 ha_client.logout() def test_graph(self): diff --git a/test/integration/test_procedure.py b/test/integration/test_procedure.py index fb12b67e3..c8539db26 100644 --- a/test/integration/test_procedure.py +++ b/test/integration/test_procedure.py @@ -471,7 +471,7 @@ def test_procedure(self, server, client): procedures = json.loads(ret[1]) #TODO when this assert failed , you should add the additional procedure test code or remove the deleted procedure test code log.info("procedures count : %s", len(procedures)) - assert len(procedures) == 108 + assert len(procedures) == 109 @pytest.mark.parametrize("server", [SERVEROPT], indirect=True)