Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion feathr_project/test/test_azure_snowflake_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def test_feathr_online_store_agg_features():
assert len(res) == 2
assert res[0] != None
assert res[1] != None
res = client.multi_get_online_features('snowflakeSampleDemoFeature',
res = client.multi_get_online_features(online_test_table,
['1', '2'],
['f_snowflake_call_center_division_name', 'f_snowflake_call_center_zipcode'])
assert res['1'][0] != None
Expand Down
2 changes: 1 addition & 1 deletion feathr_project/test/test_feature_registry.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def test_feathr_register_features_e2e():
client.get_offline_features(observation_settings=settings,
feature_query=feature_query,
output_path=output_path)
client.wait_job_to_finish(timeout_sec=500)
client.wait_job_to_finish(timeout_sec=900)



Expand Down