Skip to content

Commit

Permalink
fix data profiler testcase
Browse files Browse the repository at this point in the history
  • Loading branch information
Eden Wu committed Aug 26, 2024
1 parent f1af9ff commit d7e92b9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/test_data_profiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit d7e92b9

Please sign in to comment.