From 7c210141a9ed7c7c3b87d3a6baffa4547365bac7 Mon Sep 17 00:00:00 2001 From: Jonny Dixon <45681293+acrylJonny@users.noreply.github.com> Date: Wed, 11 Dec 2024 13:32:44 +0000 Subject: [PATCH] Update metadata-ingestion/tests/unit/dremio/test_dremio_schema_filter.py Co-authored-by: Mayuri Nehate <33225191+mayurinehate@users.noreply.github.com> --- .../tests/unit/dremio/test_dremio_schema_filter.py | 1 + 1 file changed, 1 insertion(+) diff --git a/metadata-ingestion/tests/unit/dremio/test_dremio_schema_filter.py b/metadata-ingestion/tests/unit/dremio/test_dremio_schema_filter.py index 1a1e1ad343376e..a935b1bc8a4ce1 100644 --- a/metadata-ingestion/tests/unit/dremio/test_dremio_schema_filter.py +++ b/metadata-ingestion/tests/unit/dremio/test_dremio_schema_filter.py @@ -66,6 +66,7 @@ def test_allow_and_deny_patterns(self, dremio_api): assert dremio_api.should_include_container([], "prod") assert dremio_api.should_include_container(["prod"], "public") + assert dremio_api.should_include_container(["prod", "public"], "next") assert not dremio_api.should_include_container(["prod"], "internal") assert not dremio_api.should_include_container(["prod", "internal"], "secrets")