diff --git a/tests/test_data_profiler.py b/tests/test_data_profiler.py index 896f7f1..0e3a1a6 100644 --- a/tests/test_data_profiler.py +++ b/tests/test_data_profiler.py @@ -18,6 +18,9 @@ def test_profile_data(): 'numeric_columns': [(0, 'show_id'), (7, 'release_year')], 'categorical_columns': [(1, 'type'), (2, 'title'), (3, 'director'), (4, 'cast'), (5, 'country'), (6, 'date_added'), (8, 'duration'), (9, 'listed_in'), - (10, 'description')]} + (10, 'description')], + 'column_names': ['show_id', 'type', 'title', 'director', 'cast', 'country', 'date_added', + 'release_year', 'duration', 'listed_in', 'description'], + } assert actual_metadata == expected_metadata