From 9fe7ef49a1e3f52d60c4ecf117198eabba9ce9bb Mon Sep 17 00:00:00 2001 From: Tamas Gal <himself@tamasgal.com> Date: Mon, 11 Dec 2023 12:50:59 +0100 Subject: [PATCH] Remove unneeded tests --- test/math_tests.jl | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test/math_tests.jl b/test/math_tests.jl index ba53b26..75c06be 100644 --- a/test/math_tests.jl +++ b/test/math_tests.jl @@ -7,10 +7,6 @@ using Test @test π/2 ≈ angle([1,0,0], [0,1,0]) @test π/2 ≈ angle([1,0,0], [0,0,1]) @test π ≈ angle([1,0,0], [-1,0,0]) - - m1 = NeRCA.MuonScanfitCandidate(Position(1, 2, 3), Direction(1.0, 0.0, 0.0), 0, 0, 0, 0) - m2 = NeRCA.MuonScanfitCandidate(Position(1, 2, 3), Direction(0.0, 1.0, 0.0), 0, 0, 0, 0) - @test π/2 ≈ angle(m1, m2) end -- GitLab