Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yusufuyanik1 committed Jan 24, 2025
1 parent 40da276 commit 9cf139c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/pdstools/reports/HealthCheck.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -1619,7 +1619,7 @@ try:
response_counts = datamart.plot.over_time(
"ResponseCount",
by="Channel",
show_changes=True,
cumulative=False,
facet="Configuration",
)
Expand Down
2 changes: 1 addition & 1 deletion python/tests/test_plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 9cf139c

Please sign in to comment.