mirror of
https://github.com/datahub-project/datahub.git
synced 2025-07-06 08:38:41 +00:00
7 lines
239 B
Python
7 lines
239 B
Python
from datahub.ingestion.source.redshift.config import RedshiftConfig
|
|
|
|
|
|
def test_incremental_lineage_default_to_false():
|
|
config = RedshiftConfig(host_port="localhost:5439", database="test")
|
|
assert config.incremental_lineage is False
|