Skip to content

Commit

Permalink
Fix smoke test.
Browse files Browse the repository at this point in the history
  • Loading branch information
delucchi-cmu committed May 9, 2024
1 parent 8dbd116 commit 997a15f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/lsdb/catalog/test_crossmatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@


def test_kdtree_crossmatch(small_sky_catalog_cloud, small_sky_xmatch_catalog_cloud, xmatch_correct_cloud):
with pytest.warns(RuntimeWarning, match="Results may be inaccurate"):
with pytest.warns(RuntimeWarning, match="Results may be incomplete"):
xmatched = small_sky_catalog_cloud.crossmatch(
small_sky_xmatch_catalog_cloud, radius_arcsec=0.01 * 3600, require_right_margin=False
small_sky_xmatch_catalog_cloud, radius_arcsec=0.01 * 3600
).compute()
assert len(xmatched) == len(xmatch_correct_cloud)
for _, correct_row in xmatch_correct_cloud.iterrows():
Expand Down

0 comments on commit 997a15f

Please sign in to comment.