From 9cf139c1612012dffe916cefff2ed0bf2c01c4a5 Mon Sep 17 00:00:00 2001 From: "Uyanik, Yusuf" Date: Fri, 24 Jan 2025 10:43:47 +0100 Subject: [PATCH] fix tests --- python/pdstools/reports/HealthCheck.qmd | 2 +- python/tests/test_plots.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/python/pdstools/reports/HealthCheck.qmd b/python/pdstools/reports/HealthCheck.qmd index 2ff7b9eb..904ab46e 100644 --- a/python/pdstools/reports/HealthCheck.qmd +++ b/python/pdstools/reports/HealthCheck.qmd @@ -1619,7 +1619,7 @@ try: response_counts = datamart.plot.over_time( "ResponseCount", by="Channel", - show_changes=True, + cumulative=False, facet="Configuration", ) diff --git a/python/tests/test_plots.py b/python/tests/test_plots.py index 990f63d6..20e7189c 100644 --- a/python/tests/test_plots.py +++ b/python/tests/test_plots.py @@ -62,7 +62,7 @@ def test_over_time(sample2: ADMDatamart): assert fig is not None performance_changes = ( - sample2.plot.over_time(metric="Performance", show_changes=True, return_df=True) + sample2.plot.over_time(metric="Performance", cumulative=False, return_df=True) .collect() .get_column("Performance_weighted_average_change") .to_list()