Skip to content

Commit

Permalink
Remove warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
vnmabus committed Dec 8, 2023
1 parent c3fabd3 commit 9202110
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions dcor/tests/test_dcor.py
Original file line number Diff line number Diff line change
Expand Up @@ -523,14 +523,17 @@ def test_integer_overflow(self) -> None:
int_int = dcor.distance_correlation(
arr1,
arr2,
compile_mode=dcor.CompileMode.NO_COMPILE,
)
float_int = dcor.distance_correlation(
arr1.astype(float),
arr2,
compile_mode=dcor.CompileMode.NO_COMPILE,
)
int_float = dcor.distance_correlation(
arr1,
arr2.astype(float),
compile_mode=dcor.CompileMode.NO_COMPILE,
)
float_float = dcor.distance_correlation(
arr1.astype(float),
Expand Down

0 comments on commit 9202110

Please sign in to comment.