Skip to content

Commit

Permalink
Use add_record_metadata with hard delete
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon committed Nov 30, 2024
1 parent 997f716 commit cb62ed2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/samples/test_target_sqlite.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,13 @@ def sqlite_sample_target(sqlite_target_test_config):
@pytest.fixture
def sqlite_sample_target_hard_delete(sqlite_target_test_config):
"""Get a sample target object with hard_delete disabled."""
return SQLiteTarget(config={**sqlite_target_test_config, "hard_delete": True})
return SQLiteTarget(
config={
**sqlite_target_test_config,
"hard_delete": True,
"add_record_metadata": False,
}
)


@pytest.fixture
Expand Down

0 comments on commit cb62ed2

Please sign in to comment.