Skip to content

Commit

Permalink
force index alignment in parallel test
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD committed Aug 16, 2024
1 parent 8b884d6 commit 9a07754
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/test_parse_all_dandi_raw_s3_logs_parallel.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ def test_parse_all_dandi_raw_s3_logs_example_0_parallel(tmpdir: py.path.local) -
test_parsed_s3_log = test_parsed_s3_log.sort_values(by="timestamp")
expected_parsed_s3_log = expected_parsed_s3_log.sort_values(by="timestamp")

test_parsed_s3_log.index = range(len(test_parsed_s3_log))
expected_parsed_s3_log.index = range(len(expected_parsed_s3_log))

pandas.testing.assert_frame_equal(left=test_parsed_s3_log, right=expected_parsed_s3_log)


Expand Down

0 comments on commit 9a07754

Please sign in to comment.