Skip to content

Commit

Permalink
test: add clarififying comments for cell_loc test
Browse files Browse the repository at this point in the history
  • Loading branch information
kenibrewer authored Mar 2, 2024
1 parent 9d9da97 commit 7d74b35
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_cyto_utils/test_cell_locations.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ def test_output_shape_and_required_columns(
metadata_input_dataframe.shape[1] + 2,
)

# verify that the Nuclear_Location_Center_X and Nuclear_Location_Center_Y columns are present
assert isinstance(cell_loc["CellCenters"][0][0], dict)
# verify that the Nuclear_Location_Center_X and Nuclear_Location_Center_Y dictionary keys are present
assert "Nuclei_Location_Center_X" in cell_loc["CellCenters"][0][0]
assert "Nuclei_Location_Center_Y" in cell_loc["CellCenters"][0][0]

Expand Down

0 comments on commit 7d74b35

Please sign in to comment.