Skip to content

Commit

Permalink
flaking
Browse files Browse the repository at this point in the history
  • Loading branch information
gomezzz committed Oct 10, 2023
1 parent fa051f4 commit c6baf39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion torchquad/tests/integration_test_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def __init__(
"""
self.integration_dim = integration_dim
self.expected_result = expected_result
if type(integrand_dims) == int or hasattr(integrand_dims, "__len__"):
if type(integrand_dims) is int or hasattr(integrand_dims, "__len__"):
self.integrand_dims = integrand_dims
else:
ValueError(
Expand Down

0 comments on commit c6baf39

Please sign in to comment.