Skip to content

Commit

Permalink
fix rounding (#381)
Browse files Browse the repository at this point in the history
  • Loading branch information
R-Palazzo committed Jun 30, 2023
1 parent 1f4df05 commit 0166e8e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def test_column_shapes_property():
result = column_shapes.get_score(real_data, synthetic_data, metadata)

# Assert
assert result == 0.8
assert result == 0.79


def test_column_shapes_property_with_progress_bar():
Expand All @@ -33,7 +33,7 @@ def test_column_shapes_property_with_progress_bar():
result = column_shapes.get_score(real_data, synthetic_data, metadata, progress_bar)

# Assert
assert result == 0.8
assert result == 0.79
assert mock_update.call_count == num_columns


Expand Down

0 comments on commit 0166e8e

Please sign in to comment.