Skip to content

Commit

Permalink
fix path in test script
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Creel committed Jul 14, 2023
1 parent a0e4090 commit 64a3af5
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 @@ -5,14 +5,14 @@ cd(@__DIR__)
@testset "SimulatedNeuralMoments" begin

@info "running MN example with a small sample"
include("../example/MNexample.jl")
include("../examples/MNexample.jl")
acceptance, rmse = runme(10000,100,false) # fast run
@test rmse < 0.2
@test acceptance > 0.1
@test acceptance < 0.5

@info "running MN example with a small sample"
include("../example/SVexample.jl")
include("../examples/SVexample.jl")
acceptance, rmse = runme(10000,100,false) # fast run
@test rmse < 0.2
@test acceptance > 0.1
Expand Down

0 comments on commit 64a3af5

Please sign in to comment.