From 1c958a28c1c8161311dff3d7d9fdc4452cbedb19 Mon Sep 17 00:00:00 2001 From: FanouZeng-TT <18280587072@163.com> Date: Fri, 21 Aug 2026 22:43:29 +0800 Subject: [PATCH] chore: remove stale conformance runner comment --- integration_test_utils.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/integration_test_utils.py b/integration_test_utils.py index 826a018..bafdd83 100644 --- a/integration_test_utils.py +++ b/integration_test_utils.py @@ -742,14 +742,7 @@ def setUp(self) -> None: # Load CSV Test Data try: - # Resolve relative to this file if not absolute - data_dir = FLAGS.test_data_dir - if not Path(data_dir).is_absolute(): - # Assumption: run from where this file is reachable via relative path - # Actually, FLAGS.test_data_dir is passed by run_conformance.sh - # Let's try to resolve it. - pass - test_data.load(data_dir) + test_data.load(FLAGS.test_data_dir) except Exception as e: # pylint: disable=broad-exception-caught logging.warning("Failed to load test CSV data: %s", e)