Skip to content

Commit

Permalink
Fix failing minimum test
Browse files Browse the repository at this point in the history
  • Loading branch information
lajohn4747 committed Jun 24, 2024
1 parent a917652 commit 87178a1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/unit/test_visualization.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,15 +284,15 @@ def test_get_column_plot_no_data():
def test__generate_column_bar_plot(mock_histogram):
"""Test ``_generate_column_bar_plot`` functionality"""
# Setup
real_data = pd.Series([1, 2, 2, 3, 5])
synthetic_data = pd.Series([2, 2, 3, 4, 5])
real_data = pd.DataFrame([1, 2, 2, 3, 5])
synthetic_data = pd.DataFrame([2, 2, 3, 4, 5])

# Run
_generate_column_bar_plot(real_data, synthetic_data)

# Assert
expected_data = pd.DataFrame(
pd.concat([real_data, synthetic_data], axis=0, ignore_index=True).astype('float64')
pd.concat([real_data, synthetic_data], axis=0, ignore_index=True)
)
expected_parameters = {
'x': 'values',
Expand Down

0 comments on commit 87178a1

Please sign in to comment.