@@ -378,6 +378,7 @@ def test_its():
378
378
assert isinstance (ax , np .ndarray ) and all (
379
379
isinstance (item , plt .Axes ) for item in ax
380
380
), "ax must be a numpy.ndarray of plt.Axes"
381
+ # Test get_plot_data with default parameters
381
382
plot_data = result .get_plot_data ()
382
383
assert isinstance (plot_data , pd .DataFrame ), (
383
384
"The returned object is not a pandas DataFrame"
@@ -431,6 +432,7 @@ def test_its_covid():
431
432
assert isinstance (ax , np .ndarray ) and all (
432
433
isinstance (item , plt .Axes ) for item in ax
433
434
), "ax must be a numpy.ndarray of plt.Axes"
435
+ # Test get_plot_data with default parameters
434
436
plot_data = result .get_plot_data ()
435
437
assert isinstance (plot_data , pd .DataFrame ), (
436
438
"The returned object is not a pandas DataFrame"
@@ -488,6 +490,7 @@ def test_sc():
488
490
assert isinstance (ax , np .ndarray ) and all (
489
491
isinstance (item , plt .Axes ) for item in ax
490
492
), "ax must be a numpy.ndarray of plt.Axes"
493
+ # Test get_plot_data with default parameters
491
494
plot_data = result .get_plot_data ()
492
495
assert isinstance (plot_data , pd .DataFrame ), (
493
496
"The returned object is not a pandas DataFrame"
@@ -550,6 +553,7 @@ def test_sc_brexit():
550
553
assert isinstance (ax , np .ndarray ) and all (
551
554
isinstance (item , plt .Axes ) for item in ax
552
555
), "ax must be a numpy.ndarray of plt.Axes"
556
+ # Test get_plot_data with default parameters
553
557
plot_data = result .get_plot_data ()
554
558
assert isinstance (plot_data , pd .DataFrame ), (
555
559
"The returned object is not a pandas DataFrame"
0 commit comments