Skip to content

Commit 7fba4f7

Browse files
authored
vdk-core: fix postgres and greenplum tests (#2825)
What: Due to the introduction of some vdk-core log changes, similar unit test for vdk-postgres and vdk-greenplum started failing and are breaking the CI/CD. Why: To fix the CI/CD. Testing Done: locally and CI/CD run
1 parent e71875f commit 7fba4f7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

projects/vdk-plugins/vdk-greenplum/tests/test_ingest_to_greenplum.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,4 +89,4 @@ def test_ingest_to_greenplum_no_dest_table(self):
8989
]
9090
)
9191

92-
assert "UndefinedTable" in ingest_job_result.output
92+
assert 'relation "test_table" does not exist' in ingest_job_result.output

projects/vdk-plugins/vdk-postgres/tests/test_ingest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,4 +91,4 @@ def test_ingest_no_dest_table(self):
9191
]
9292
)
9393

94-
assert "UndefinedTable" in ingest_job_result.output
94+
assert 'relation "test_table" does not exist' in ingest_job_result.output

0 commit comments

Comments
 (0)