Skip to content

Commit

Permalink
change test name + location
Browse files Browse the repository at this point in the history
  • Loading branch information
R-Palazzo committed Jul 24, 2024
1 parent 407ca09 commit 3d92ead
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_property.py → tests/integration/test_property.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def test_shuffling_data_single_table(property):


@pytest.mark.parametrize('property', MULTI_TABLE_PROPERTIES)
def test_property_multi_table(property):
def test_shuffling_data_multi_table(property):
"""Test the property score is the same when shuffling the data for multi-table."""
# Setup
property_instance = property()
Expand All @@ -56,4 +56,4 @@ def test_property_multi_table(property):
)

# Assert
assert np.isclose(score, score_shuffled, rtol=1e-10)
assert np.isclose(score, score_shuffled, rtol=1e-12)

0 comments on commit 3d92ead

Please sign in to comment.