From b452e435c438f6d1e8474a94c12854852d9e9185 Mon Sep 17 00:00:00 2001 From: solidiquis Date: Fri, 21 Jun 2024 17:57:19 -0600 Subject: [PATCH] fix test --- python/lib/sift_py/ingestion/_internal/ingest_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lib/sift_py/ingestion/_internal/ingest_test.py b/python/lib/sift_py/ingestion/_internal/ingest_test.py index 79b3b24e..297013fc 100644 --- a/python/lib/sift_py/ingestion/_internal/ingest_test.py +++ b/python/lib/sift_py/ingestion/_internal/ingest_test.py @@ -209,7 +209,7 @@ def test_ingestion_service_try_create_ingestion_request_validations(mocker: Mock ) mock_get_or_create_ingestion_config.return_value = mock_ingestion_config - mock_update_flow_configs = mocker.patch.object(_IngestionServiceImpl, "update_flow_configs") + mock_update_flow_configs = mocker.patch.object(_IngestionServiceImpl, "_update_flow_configs") mock_update_flow_configs.return_value = None mock_update_rules = mocker.patch(_mock_path(update_rules))