From aef128e9eb161cecc3ef7779f04f09572db1da7f Mon Sep 17 00:00:00 2001 From: LuLu Zuo Date: Wed, 22 Nov 2023 19:27:21 +0800 Subject: [PATCH] delete useless code --- .../unittests/processpool/test_line_execution_process_pool.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/promptflow/tests/executor/unittests/processpool/test_line_execution_process_pool.py b/src/promptflow/tests/executor/unittests/processpool/test_line_execution_process_pool.py index 86524e03c21..d7a4b6a2c0a 100644 --- a/src/promptflow/tests/executor/unittests/processpool/test_line_execution_process_pool.py +++ b/src/promptflow/tests/executor/unittests/processpool/test_line_execution_process_pool.py @@ -255,7 +255,6 @@ def test_process_pool_run_with_exception(self, flow_folder, dev_connections, moc ) as pool: with pytest.raises(UserErrorException) as e: pool.run(zip(range(nlines), bulk_inputs)) - print(f"eee:{e.value}") assert e.value.message == test_error_msg assert e.value.target == ErrorTarget.AZURE_RUN_STORAGE assert e.value.error_codes[0] == "UserError"