Skip to content

Commit

Permalink
Fixups
Browse files Browse the repository at this point in the history
  • Loading branch information
xjules committed Sep 11, 2024
1 parent 82600b6 commit b8d237b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ert/gui/plottery/plots/ensemble.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def plot(
plot_context.deactivateDateSupport()
plot_context.x_axis = plot_context.INDEX_AXIS

draw_style = "steps" if is_rate(plot_context.key()) else None
draw_style = "steps-pre" if is_rate(plot_context.key()) else None
self._plotLines(
axes,
config,
Expand Down
2 changes: 1 addition & 1 deletion tests/unit_tests/shared/test_rate_keys.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def test_is_rate_does_not_raise_error(key):
]


@given(st.sampled_from(examples))
@given(example=st.sampled_from(examples))
def test_is_rate_determmines_rate_key(example):
key, rate = example
is_rate_bool = is_rate(key)
Expand Down

0 comments on commit b8d237b

Please sign in to comment.