Skip to content

Commit

Permalink
fixing int test on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
harmsm committed Dec 28, 2022
1 parent dfa7c96 commit 8ba1568
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/reports/test_elements.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@ def _check_default(kwarg):

def test_df_to_table():

test_df = pd.DataFrame({"test":[1,2,3],"this":[4.1,5.2,6.3]})
test_df = pd.DataFrame({"test":np.array([1,2,3],dtype=int),
"this":np.array([4.1,5.2,6.3],dtype=float)})

# Test show_row_numbers and add_header (which interact)

Expand Down

0 comments on commit 8ba1568

Please sign in to comment.