Skip to content

Commit

Permalink
stop checking dtype
Browse files Browse the repository at this point in the history
  • Loading branch information
lennybronner committed Oct 23, 2024
1 parent 4e00552 commit 7456f92
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -880,5 +880,9 @@ 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 7456f92

Please sign in to comment.