From f88da8530fdbef35809ee1c057b3445579cc077a Mon Sep 17 00:00:00 2001 From: Mike Alfare Date: Thu, 22 Feb 2024 10:10:56 -0500 Subject: [PATCH] point to new base class --- tests/functional/shared_tests/test_column_types.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/functional/shared_tests/test_column_types.py b/tests/functional/shared_tests/test_column_types.py index f5037860..47dec245 100644 --- a/tests/functional/shared_tests/test_column_types.py +++ b/tests/functional/shared_tests/test_column_types.py @@ -1,5 +1,5 @@ -from dbt.tests.adapter.column_types.test_column_types import BaseColumnTypes +from dbt.tests.adapter.column_types.test_column_types import BasePostgresColumnTypes -class TestPostgresColumnTypes(BaseColumnTypes): +class TestPostgresColumnTypes(BasePostgresColumnTypes): pass