Skip to content

Commit

Permalink
stopping dtype check
Browse files Browse the repository at this point in the history
  • Loading branch information
lennybronner committed Oct 24, 2024
1 parent 6630908 commit 1b15de2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -876,5 +876,5 @@ def test_get_national_summary_votes_estimates(model_client, va_governor_county_d

current = model_client.get_national_summary_votes_estimates(None, 0, [0.99])

pd.testing.assert_frame_equal(current, model_client.results_handler.final_results["nat_sum_data"])
pd.testing.assert_frame_equal(expected_df, model_client.results_handler.final_results["nat_sum_data"])
pd.testing.assert_frame_equal(current, model_client.results_handler.final_results["nat_sum_data"], check_dtype=False)
pd.testing.assert_frame_equal(expected_df, model_client.results_handler.final_results["nat_sum_data"], check_dtype=False)

0 comments on commit 1b15de2

Please sign in to comment.