From 12e0c48860cfa04bb83d884c23a29886de04634b Mon Sep 17 00:00:00 2001 From: Junyuan Chen Date: Fri, 26 Apr 2024 00:11:49 -0700 Subject: [PATCH] Fix an issue --- test/lp.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lp.jl b/test/lp.jl index 33b519a..721b7f7 100644 --- a/test/lp.jl +++ b/test/lp.jl @@ -143,7 +143,7 @@ end # Have one fewer coefficient because the constant term is replace by FE @test r1.B ≈ r.B[2:61,:,:] # Does not seem to be an issue but ≈ fails for certain horizons - @test maximum(abs.(r1.V[:,:,:] .- r.V[2:61,2:61,:])) < 5e-8 + @test maximum(abs.(r1.V[:,:,:] .- r.V[2:61,2:61,:])) < 1e-7 # V is not exactly the same because of the removed intercept @test r1.T ≈ r.T @test r1.fenames == [:gid]