Skip to content

Commit

Permalink
CR
Browse files Browse the repository at this point in the history
Signed-off-by: Achal Shah <[email protected]>
  • Loading branch information
achals committed Apr 18, 2022
1 parent 2f01c0e commit 3ba43be
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions sdk/python/tests/unit/test_feature_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@


def test_create_batch_feature_view():
batch_source = FileSource("some path")
batch_source = FileSource(path="some path")
BatchFeatureView(
name="test batch feature view",
entities=[],
Expand All @@ -29,7 +29,7 @@ def test_create_batch_feature_view():
bootstrap_servers="",
message_format=AvroFormat(""),
topic="topic",
batch_source=FileSource("some path"),
batch_source=FileSource(path="some path"),
)
with pytest.raises(ValueError):
BatchFeatureView(
Expand All @@ -47,7 +47,7 @@ def test_create_stream_feature_view():
bootstrap_servers="",
message_format=AvroFormat(""),
topic="topic",
batch_source=FileSource("some path"),
batch_source=FileSource(path="some path"),
)
StreamFeatureView(
name="test batch feature view",
Expand All @@ -66,5 +66,5 @@ def test_create_stream_feature_view():
name="test batch feature view",
entities=[],
ttl=timedelta(days=30),
source=FileSource("some path"),
source=FileSource(path="some path"),
)

0 comments on commit 3ba43be

Please sign in to comment.