Skip to content
Merged
Changes from all commits
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
4 changes: 2 additions & 2 deletions tests/test_line_collection.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ def plot() -> Figure:

# We need to set the plot limits, they will not autoscale
ax = plt.axes()
ax.set_xlim((np.amin(x), np.amax(x)))
ax.set_ylim((np.amin(np.amin(ys)), np.amax(np.amax(ys))))
ax.set_xlim((float(np.amin(x)), float(np.amax(x))))
ax.set_ylim((float(np.amin(np.amin(ys))), float(np.amax(np.amax(ys)))))

# colors is sequence of rgba tuples
# linestyle is a string or dash tuple. Legal string values are
Expand Down
Loading