Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
jishnub committed May 5, 2020
1 parent 12e7a46 commit 96d1143
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 @@ -2,7 +2,7 @@ using Test
using NumericallyIntegrateArrays

@testset "simps" begin
x = range(0,π,length=10); dx = step(x)
x = range(0,stop=π,length=10); dx = step(x)

@testset "dx" begin
@testset "1D" begin
Expand All @@ -27,7 +27,7 @@ using NumericallyIntegrateArrays
end

@testset "trapz" begin
x = range(0,π,length=10); dx = step(x)
x = range(0,stop=π,length=10); dx = step(x)

@testset "dx" begin
@testset "1D" begin
Expand Down

0 comments on commit 96d1143

Please sign in to comment.