Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix test
Signed-off-by: Danny Chiao <danny@tecton.ai>
  • Loading branch information
adchia committed Mar 12, 2023
commit b2974dd6d010387750d500ccac28384836a06447
15 changes: 12 additions & 3 deletions sdk/python/tests/integration/registration/test_inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ def test_update_file_data_source_with_inferred_event_timestamp_col(simple_datase
update_data_sources_with_inferred_event_timestamp_col(
data_sources,
RepoConfig(
provider="local", project="test", entity_key_serialization_version=2
provider="local",
project="test",
registry="test.pb",
entity_key_serialization_version=2,
),
)
actual_event_timestamp_cols = [
Expand All @@ -35,7 +38,10 @@ def test_update_file_data_source_with_inferred_event_timestamp_col(simple_datase
update_data_sources_with_inferred_event_timestamp_col(
[file_source],
RepoConfig(
provider="local", project="test", entity_key_serialization_version=2
provider="local",
project="test",
registry="test.pb",
entity_key_serialization_version=2,
),
)

Expand All @@ -53,7 +59,10 @@ def test_update_data_sources_with_inferred_event_timestamp_col(universal_data_so
update_data_sources_with_inferred_event_timestamp_col(
data_sources_copy.values(),
RepoConfig(
provider="local", project="test", entity_key_serialization_version=2
provider="local",
project="test",
registry="test.pb",
entity_key_serialization_version=2,
),
)
actual_event_timestamp_cols = [
Expand Down