Skip to content
Snippets Groups Projects
Commit f0ef46ad authored by Florstedt, Julius's avatar Florstedt, Julius
Browse files

small fix on the main branch, adding missing else in test case.

parent d20de117
No related branches found
No related tags found
1 merge request!38small fix on the main branch, adding missing else in test case.
Pipeline #1624177 passed
......@@ -112,14 +112,15 @@ def test_hist_plot(
if bins is None and cumulative is None and density is None:
# giving arguments the none value throws errors, might need a test overhaul overall
ax.hist(x)
ax.hist(
x,
bins=bins,
color=color,
label=label,
cumulative=cumulative,
density=density,
)
else:
ax.hist(
x,
bins=bins,
color=color,
label=label,
cumulative=cumulative,
density=density,
)
if title:
ax.set_title(title)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment