Skip to content

Commit

Permalink
Account for different ordering of columns
Browse files Browse the repository at this point in the history
  • Loading branch information
GregoryPetrochenkov-NOAA committed Oct 9, 2024
1 parent bd8b2c1 commit f10eeed
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/test_catalogs.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"


Expand Down

0 comments on commit f10eeed

Please sign in to comment.