Skip to content

Commit

Permalink
Fixes flake in test_hypothesis_mean_agg #496
Browse files Browse the repository at this point in the history
  • Loading branch information
IvoDD committed Dec 5, 2023
1 parent 37c5e49 commit 861fce4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions python/tests/unit/arcticdb/version_store/test_aggregation.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@ def test_hypothesis_mean_agg(lmdb_version_store, df):
received_df.replace(-np.inf, np.nan, inplace=True)
received_df.replace(np.inf, np.nan, inplace=True)

expected_df.replace(-np.inf, np.nan, inplace=True)
expected_df.replace(np.inf, np.nan, inplace=True)

assert_frame_equal(expected_df, received_df)


Expand Down

0 comments on commit 861fce4

Please sign in to comment.