Skip to content

Commit

Permalink
Avoid assertion in test_statistics_endpoint failing due to pandas bug
Browse files Browse the repository at this point in the history
  • Loading branch information
albertvillanova committed Aug 22, 2024
1 parent 227f2c4 commit c437c9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e/tests/test_14_statistics.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def test_statistics_endpoint(normal_user_public_json_dataset: str) -> None:
assert "column_statistics" in float_column
assert "column_type" in float_column
assert float_column["column_name"] == "col_3"
assert float_column["column_type"] == "float"
# assert float_column["column_type"] == "float" # Uncomment once fixed: pandas-dev/pandas#58866
assert isinstance(float_column["column_statistics"], dict)
assert float_column["column_statistics"] == {
"nan_count": 0,
Expand Down

0 comments on commit c437c9f

Please sign in to comment.