From b548889ff2efc70182b1e808d749764c7b2c1826 Mon Sep 17 00:00:00 2001 From: Yihui Guo Date: Thu, 12 May 2022 22:52:46 +0800 Subject: [PATCH] Fix another CI test --- feathr_project/test/test_feature_registry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/feathr_project/test/test_feature_registry.py b/feathr_project/test/test_feature_registry.py index 82ffc1585..4abb73b6d 100644 --- a/feathr_project/test/test_feature_registry.py +++ b/feathr_project/test/test_feature_registry.py @@ -41,7 +41,7 @@ def test_feathr_register_features_e2e(): all_features = client.list_registered_features(project_name=client.project_name) all_feature_names = [x['name'] for x in all_features] - assert 'f_is_long_trip_distance' in all_features # test regular ones + assert 'f_is_long_trip_distance' in all_feature_names # test regular ones assert 'f_trip_time_rounded' in all_feature_names # make sure derived features are there assert 'f_location_avg_fare' in all_feature_names # make sure aggregated features are there assert 'f_trip_time_rounded_plus' in all_feature_names # make sure derived features are there