Skip to content

Commit

Permalink
fix collection test to not expect gid column in meta (redundant with …
Browse files Browse the repository at this point in the history
…index)
  • Loading branch information
grantbuster committed Nov 14, 2022
1 parent c9fef50 commit f8893bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_output_handling.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def test_h5_collect_mask(log=False):
max_workers=1, join_times=False)
with ResourceX(fp_out_mask) as fh:
mask_meta = pd.read_csv(mask_file, dtype=np.float32)
assert np.array_equal(mask_meta['gid'], fh.meta['gid'])
assert np.array_equal(mask_meta['gid'], fh.meta.index.values)
assert np.array_equal(mask_meta['longitude'], fh.meta['longitude'])
assert np.array_equal(mask_meta['latitude'], fh.meta['latitude'])

Expand Down

0 comments on commit f8893bb

Please sign in to comment.