Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 493fcdb

Browse files
committed
TST: fix plots for test
1 parent 91e0a04 commit 493fcdb

File tree

5 files changed

+2
-1
lines changed

5 files changed

+2
-1
lines changed

lib/matplotlib/tests/test_dates.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,8 @@ def test_empty_date_with_year_formatter():
319319

320320
def test_auto_date_locator():
321321
def _create_auto_date_locator(date1, date2):
322-
locator = mdates.AutoDateLocator()
322+
# we prob. should eventually have a test w/ interval_multiples=True
323+
locator = mdates.AutoDateLocator(interval_multiples=False)
323324
locator.create_dummy_axis()
324325
locator.set_view_interval(mdates.date2num(date1),
325326
mdates.date2num(date2))

0 commit comments

Comments
 (0)