Skip to content

Commit 64fc5de

Browse files
committed
Use correct format
1 parent f550805 commit 64fc5de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/integration/arrtest_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
plot.title "Array Plot Example"
2020
plot.ylabel "x"
2121
plot.xlabel "x^2"
22-
plot.set "term","postscript eps"
23-
plot.set "out", "'#{path}'"
22+
plot.term "postscript eps"
23+
plot.output path
2424

2525
x = (0..50).collect { |v| v.to_f }
2626
y = x.collect { |v| v ** 2 }

0 commit comments

Comments
 (0)