8000 TST: Fix streamplot test images · matplotlib/matplotlib@15fc856 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

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

8000
Appearance settings

Commit 15fc856

Browse files
committed
TST: Fix streamplot test images
1 parent 0f36b56 commit 15fc856

20 files changed

+12752
-14285
lines changed

lib/matplotlib/streamplot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -603,11 +603,11 @@ def interpgrid(a, xi, yi):
603603
x = int(xi)
604604
y = int(yi)
605605
# conditional is faster than clipping for integers
606-
if x == (Nx - 1):
606+
if x == (Nx - 1):
607607
xn = x
608608
else:
609609
xn = x + 1
610-
if y == (Ny - 1):
610+
if y == (Ny - 1):
611611
yn = y
612612
else:
613613
yn = y + 1
Binary file not shown.
Loading

0 commit comments

Comments
 (0)
0