From 7df27b18e1ff8f6a56ce2a8143f642bb8b202cc2 Mon Sep 17 00:00:00 2001 From: Sheehan Olver Date: Sat, 7 Dec 2024 21:00:21 +0000 Subject: [PATCH] Fiix tests --- Project.toml | 10 +++++----- test/test_logkernel.jl | 2 +- test/test_stieltjes.jl | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Project.toml b/Project.toml index eb6700d..d1b8699 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "SingularIntegrals" uuid = "d7440221-8b5e-42fc-909c-0567823f424a" authors = ["Sheehan Olver "] -version = "0.3.3" +version = "0.3.4" [deps] ArrayLayouts = "4c555306-a7a7-4459-81d9-ec55ddd5c99a" @@ -16,8 +16,8 @@ LazyArrays = "5078a376-72f3-5289-bfd5-ec5146d43c02" LazyBandedMatrices = "d7e5e226-e90b-4449-9968-0f923699bf6f" LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" QuasiArrays = "c4ea9172-b204-11e9-377d-29865faadc5c" -RecurrenceRelationships = "807425ed-42ea-44d6-a357-6771516d7b2c" RecurrenceRelationshipArrays = "b889d2dc-af3c-4820-88a8-238fa91d3518" +RecurrenceRelationships = "807425ed-42ea-44d6-a357-6771516d7b2c" SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b" [compat] @@ -28,12 +28,12 @@ ContinuumArrays = "0.18" FastTransforms = "0.16" FillArrays = "1" HypergeometricFunctions = "0.3.4" -InfiniteArrays = "0.14" +InfiniteArrays = "0.14, 0.15" LazyArrays = "2" -LazyBandedMatrices = "0.10" +LazyBandedMatrices = "0.10, 0.11" QuasiArrays = "0.11" -RecurrenceRelationships = "0.1" RecurrenceRelationshipArrays = "0.1" +RecurrenceRelationships = "0.1" SpecialFunctions = "1, 2" julia = "1.10" diff --git a/test/test_logkernel.jl b/test/test_logkernel.jl index db25bbd..02a0309 100644 --- a/test/test_logkernel.jl +++ b/test/test_logkernel.jl @@ -24,7 +24,7 @@ using ClassicalOrthogonalPolynomials: affine @testset "expand" begin @test complexlogkernel(exp.(x), 2 + im) ≈ sum(log.((2+im) .- x) .* exp.(x)) - @test_throws InexactError complexlogkernel(Jacobi(0.1,0.2), 2+im) + @test_throws ArgumentError complexlogkernel(Jacobi(0.1,0.2), 2+im) end end diff --git a/test/test_stieltjes.jl b/test/test_stieltjes.jl index e53a93e..796b252 100644 --- a/test/test_stieltjes.jl +++ b/test/test_stieltjes.jl @@ -71,7 +71,7 @@ using SingularIntegrals: Stieltjes, StieltjesPoint U = chebyshevu(0..1) x = axes(T,1) H = inv.(x .- x') - @test_broken U\H*Weighted(T) isa BandedMatrix + @test U\H*Weighted(T) isa BandedMatrix end end