Fixed tests

This commit is contained in:
Giorgio Calderone 2020-03-16 19:56:54 +01:00
parent 8abedcc163
commit a655e5af6c
2 changed files with 2 additions and 2 deletions

View File

@ -8,6 +8,7 @@ Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
ReusePatterns = "a39b5e78-89b5-562b-97d8-70689129df0c" ReusePatterns = "a39b5e78-89b5-562b-97d8-70689129df0c"
StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91" StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
StructC14N = "d2514e9c-36c4-5b8e-97e2-51e7675c221c" StructC14N = "d2514e9c-36c4-5b8e-97e2-51e7675c221c"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
[compat] [compat]
julia = "≥ 1.0.0" julia = "≥ 1.0.0"

View File

@ -83,7 +83,7 @@ for i in 1:10
@gp :gp3 "plot sin($i*x)" @gp :gp3 "plot sin($i*x)"
sleep(0.3) sleep(0.3)
end end
quitall() Gnuplot.quitall()
#----------------------------------------------------------------- #-----------------------------------------------------------------
@gp "plot sin(x)" @gp "plot sin(x)"
@ -211,5 +211,4 @@ Gnuplot.exec("load 'test.gp'") # load file test.gp
"splot x7, v, (u<0.5) ? -1 : sinc(x7,v) notitle", "splot x7, v, (u<0.5) ? -1 : sinc(x7,v) notitle",
"splot x8, v, (u<0.5) ? -1 : sinc(x8,v) notitle", "splot x8, v, (u<0.5) ? -1 : sinc(x8,v) notitle",
"splot x9, v, (u<0.5) ? -1 : sinc(x9,v) notitle") "splot x9, v, (u<0.5) ? -1 : sinc(x9,v) notitle")
Gnuplot.quitall() Gnuplot.quitall()