Skip to content

Commit

Permalink
runtest range issue
Browse files Browse the repository at this point in the history
  • Loading branch information
m-wells committed Aug 6, 2019
1 parent 2498422 commit 078aea7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ seed!(1234)

@testset "irsample" begin

X = range(0.0,float(π),length=5)
Y = range(0.0,π/4,length=4)
X = range(0.0;stop=float(π),length=5)
Y = range(0.0;stop=π/4,length=4)
knots = (X,Y)
prob = [sin(x)+tan(y) for x in X, y in Y]

Expand Down

0 comments on commit 078aea7

Please sign in to comment.