From 997a15fdda7f5d4e936269c5af7b4fcc04a5172d Mon Sep 17 00:00:00 2001 From: Melissa DeLucchi <113376043+delucchi-cmu@users.noreply.github.com> Date: Thu, 9 May 2024 10:11:24 -0400 Subject: [PATCH] Fix smoke test. --- tests/lsdb/catalog/test_crossmatch.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/lsdb/catalog/test_crossmatch.py b/tests/lsdb/catalog/test_crossmatch.py index ea9bd1f..b51765f 100644 --- a/tests/lsdb/catalog/test_crossmatch.py +++ b/tests/lsdb/catalog/test_crossmatch.py @@ -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():