Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 08a5086

Browse filesBrowse files
committed
cannot use negative start bin for uint data
1 parent 11590b2 commit 08a5086
Copy full SHA for 08a5086

File tree

2 files changed

+2
-2
lines changed
Filter options

2 files changed

+2
-2
lines changed
Loading

‎src/napari_matplotlib/tests/test_histogram.py

Copy file name to clipboardExpand all lines: src/napari_matplotlib/tests/test_histogram.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ def test_histogram_2D_bins(make_napari_viewer, astronaut_data):
1717
viewer.add_image(astronaut_data[0], **astronaut_data[1])
1818
widget = HistogramWidget(viewer)
1919
viewer.window.add_dock_widget(widget)
20-
widget.bins_start = -50
21-
widget.bins_stop = 300
20+
widget.bins_start = 0
21+
widget.bins_stop = 350
2222
widget.bins_num = 35
2323
fig = widget.figure
2424
# Need to return a copy, as original figure is too eagerley garbage

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.