From f10eeed2e004df7dec8c1aa2503c5188b0c2310e Mon Sep 17 00:00:00 2001 From: Gregory Petrochenkov Date: Wed, 9 Oct 2024 16:09:42 -0400 Subject: [PATCH] Account for different ordering of columns --- tests/test_catalogs.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/test_catalogs.py b/tests/test_catalogs.py index 3c5fdbb..2d1109f 100644 --- a/tests/test_catalogs.py +++ b/tests/test_catalogs.py @@ -280,7 +280,11 @@ def test_stac_catalog_comparison_success( stac_clog = catalog_compare(**arguments) pd.testing.assert_frame_equal( - stac_clog, expected_catalog_df, check_dtype=False, check_index_type=False + stac_clog, + expected_catalog_df, + check_dtype=False, + check_index_type=False, + check_like=True, ), "Computed catalog did not match the expected catalog df"