Skip to content

Commit

Permalink
fix test case error
Browse files Browse the repository at this point in the history
  • Loading branch information
ljcui committed Sep 24, 2024
1 parent 773c76b commit cc76b34
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/integration/test_ha_procedure.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion test/integration/test_procedure.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit cc76b34

Please sign in to comment.