Skip to content

Commit

Permalink
Minor adjustment so we don't have a marker at 0 on the log scale.
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacrobinson2000 committed Sep 22, 2024
1 parent 523f5c2 commit 9c059cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion matplotview/tests/test_view_rendering.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def test_stop_viewing(fig_test, fig_ref):

@check_figures_equal()
def test_log_line(fig_test, fig_ref):
data = [i for i in range(10)]
data = [i for i in range(1, 10)]

# Test case... Create a view and stop it...
ax1_test, ax2_test = fig_test.subplots(1, 2)
Expand Down

0 comments on commit 9c059cb

Please sign in to comment.