This is an automated email from the ASF dual-hosted git repository.

asorokoumov pushed a commit to branch fix-type-annotation
in repository https://gitbox.apache.org/repos/asf/otava.git

commit 1d6711653e7af04b7f2096cebeccabdce09af814
Author: Alex Sorokoumov <[email protected]>
AuthorDate: Wed Dec 17 22:08:51 2025 -0800

    Fix type annotation in test_config.py
---
 otava/test_config.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/otava/test_config.py b/otava/test_config.py
index c2a2c3b..f7b9f2d 100644
--- a/otava/test_config.py
+++ b/otava/test_config.py
@@ -353,7 +353,7 @@ def create_postgres_test_config(test_name: str, test_info: 
Dict) -> PostgresTest
         raise TestConfigError(f"Configuration key not found in test 
{test_name}: {e.args[0]}")
 
 
-def create_bigquery_test_config(test_name: str, test_info: Dict) -> 
PostgresTestConfig:
+def create_bigquery_test_config(test_name: str, test_info: Dict) -> 
BigQueryTestConfig:
     try:
         time_column = test_info.get("time_column", "time")
         attributes = test_info.get("attributes", [])

Reply via email to