Skip to content

3D scatter test #152

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Jun 2, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update src/napari_matplotlib/tests/scatter/test_scatter.py
Co-authored-by: David Stansby <[email protected]>
  • Loading branch information
ruaridhg and dstansby authored Jun 2, 2023
commit 7255c9922b8879b86e53065993280d09ab1e93cd
2 changes: 1 addition & 1 deletion src/napari_matplotlib/tests/scatter/test_scatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def test_scatter_3D(make_napari_viewer, brain_data):
# De-select existing selection
viewer.layers.selection.clear()
axis = viewer.dims.last_used
slice_no = array(brain_data[0]).shape[0] - 1
slice_no = brain_data[0].shape[0] - 1
viewer.dims.set_current_step(axis, slice_no)
# Select images
viewer.layers.selection.add(viewer.layers[0])
Expand Down