Skip to content

Commit d651dac

Browse files
committed
Fix config
1 parent 1dc5da3 commit d651dac

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/functional/adapter/dremio_specific/test_exact_search.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
from dbt.tests.util import run_dbt, get_connection
33

44
from tests.utils.util import relation_from_name
5+
from tests.fixtures.profiles import unique_schema, dbt_profile_data
56

67

78
class TestExactSearchEnabled:
@@ -12,7 +13,7 @@ def models(self):
1213
"create_table.sql": """
1314
{{ config(
1415
materialized='table',
15-
schema='schema') }}
16+
root_path='schema') }}
1617
select 1 as ilike
1718
"""
1819
}
@@ -117,4 +118,4 @@ def test_ilike_case_sensitive_list_relations_without_caching(self, project):
117118
with get_connection(adapter):
118119
columns = adapter.list_relations_without_caching(table_relation)
119120

120-
assert len(columns) == 1
121+
assert len(columns) == 1

0 commit comments

Comments
 (0)