Skip to content

Commit 66e3dd0

Browse files
committed
update unit test
1 parent 334b3b0 commit 66e3dd0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

findpeaks/tests/test_findpeaks.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -586,14 +586,14 @@ def test_plot_mask(self):
586586
# Test different mask plot parameters
587587
limit_options = [0, 0.1, 0.5, None]
588588
for limit in limit_options:
589-
fp.plot_mask(limit=limit)
589+
ax = fp.plot_mask(limit=limit)
590590

591591
# Test different figure_order options
592592
for order in ['vertical', 'horizontal']:
593-
fp.plot_mask(figure_order=order)
593+
ax = fp.plot_mask(figure_order=order)
594594

595595
# Test different marker and color options
596-
fp.plot_mask(marker='o', color='blue', s=100)
596+
fp.plot_mask(marker='o', color='blue', s=5, fontsize=10)
597597

598598
def test_caerus_method(self):
599599
"""Test caerus method specifically"""

0 commit comments

Comments
 (0)