Skip to content

Commit 9c059cb

Browse files
Minor adjustment so we don't have a marker at 0 on the log scale.
1 parent 523f5c2 commit 9c059cb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

matplotview/tests/test_view_rendering.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ def test_stop_viewing(fig_test, fig_ref):
244244

245245
@check_figures_equal()
246246
def test_log_line(fig_test, fig_ref):
247-
data = [i for i in range(10)]
247+
data = [i for i in range(1, 10)]
248248

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

0 commit comments

Comments
 (0)