From 8d26af8466cd9a750d3dda0fa4084ea7fc574b7a Mon Sep 17 00:00:00 2001 From: better629 Date: Thu, 21 Dec 2023 18:05:34 +0800 Subject: [PATCH] fix bug of missing test_round --- metagpt/roles/qa_engineer.py | 1 + 1 file changed, 1 insertion(+) diff --git a/metagpt/roles/qa_engineer.py b/metagpt/roles/qa_engineer.py index 5e509300b6..39246364ea 100644 --- a/metagpt/roles/qa_engineer.py +++ b/metagpt/roles/qa_engineer.py @@ -39,6 +39,7 @@ class QaEngineer(Role): "The test code you write should conform to code standard like PEP8, be modular, " "easy to read and maintain" ) test_round_allowed: int = 5 + test_round: int = 0 def __init__(self, **kwargs): super().__init__(**kwargs)