From 221a49b7eb196501cf524e7f42f334bcf5fc1348 Mon Sep 17 00:00:00 2001 From: geekan Date: Thu, 28 Dec 2023 15:47:43 +0800 Subject: [PATCH] solve test startup.py --- tests/metagpt/test_startup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/metagpt/test_startup.py b/tests/metagpt/test_startup.py index 134dba04f..862692003 100644 --- a/tests/metagpt/test_startup.py +++ b/tests/metagpt/test_startup.py @@ -24,9 +24,10 @@ async def test_empty_team(): def test_startup(): - args = ["Make a 2048 game"] + args = ["Make a cli snake game"] result = runner.invoke(app, args) logger.info(result) + logger.info(result.output) if __name__ == "__main__":