Skip to content

Commit 47102ec

Browse files
committed
Add a test with linewidth
1 parent 2c0bf9f commit 47102ec

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/test/java/com/github/sh0nk/matplotlib4j/MainTest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ public void testPlotLogScale() throws IOException, PythonExecutionException {
4747
plt.plot()
4848
.add(Arrays.asList(1.3, 20, 200, 300, 400, 1000), Arrays.asList(1, 4, 10, 20, 100, 800))
4949
.label("label")
50-
.linestyle("--");
50+
.linestyle("--")
51+
.linewidth(2.0);
5152
plt.xscale(ScaleBuilder.Scale.log);
5253
plt.yscale(ScaleBuilder.Scale.log);
5354
plt.xlabel("xlabel");

0 commit comments

Comments
 (0)