Skip to content

Commit

Permalink
fix: update collection name based on updates for ingestion pipeline!
Browse files Browse the repository at this point in the history
  • Loading branch information
amindadgar committed Jun 3, 2024
1 parent e176c67 commit 5fda3a6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class TestIngestionPipeline(unittest.TestCase):
def test_run_pipeline(self):
ingest_pipeline = Mock(IngestionPipeline)
community = "1234"
collection_name = "gdrive"
collection_name = "google"
ingestion_pipeline = CustomIngestionPipeline(
community_id=community, collection_name=collection_name, testing=True
)
Expand All @@ -31,7 +31,7 @@ def test_run_pipeline(self):

def test_load_pipeline_run_exception(self):
ingestion_pipeline = CustomIngestionPipeline(
"1234", collection_name="gdrive", testing=True
"1234", collection_name="google", testing=True
)
ingestion_pipeline.run_pipeline = Mock()
ingestion_pipeline.run_pipeline.side_effect = Exception("Test Exception")
Expand Down

0 comments on commit 5fda3a6

Please sign in to comment.