Skip to content

Commit

Permalink
Fix usage test
Browse files Browse the repository at this point in the history
Signed-off-by: Felix Wang <wangfelix98@gmail.com>
  • Loading branch information
felixwang9817 committed Jan 24, 2022
1 parent 8e0b5dd commit 2e8961f
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions sdk/python/tests/integration/e2e/test_usage_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,16 +66,10 @@ def test_usage_on(dummy_exporter, enabling_toggle):

test_feature_store.apply([entity])

assert len(dummy_exporter) == 3
assert {
"entrypoint": "feast.infra.local.LocalRegistryStore.get_registry_proto"
}.items() <= dummy_exporter[0].items()
assert {
"entrypoint": "feast.infra.local.LocalRegistryStore.update_registry_proto"
}.items() <= dummy_exporter[1].items()
assert len(dummy_exporter) == 1
assert {
"entrypoint": "feast.feature_store.FeatureStore.apply"
}.items() <= dummy_exporter[2].items()
}.items() <= dummy_exporter[0].items()


@pytest.mark.integration
Expand Down

0 comments on commit 2e8961f

Please sign in to comment.