Skip to content

Commit

Permalink
Fix test failure (#276)
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoyongzhu authored May 18, 2022
1 parent 2c5dfc0 commit a7d7ba6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit a7d7ba6

Please sign in to comment.