Skip to content

Commit 84f614b

Browse files
authored
Fiix tests (#50)
1 parent 0a4b17e commit 84f614b

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Project.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "SingularIntegrals"
22
uuid = "d7440221-8b5e-42fc-909c-0567823f424a"
33
authors = ["Sheehan Olver <solver@mac.com>"]
4-
version = "0.3.3"
4+
version = "0.3.4"
55

66
[deps]
77
ArrayLayouts = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"
@@ -16,8 +16,8 @@ LazyArrays = "5078a376-72f3-5289-bfd5-ec5146d43c02"
1616
LazyBandedMatrices = "d7e5e226-e90b-4449-9968-0f923699bf6f"
1717
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1818
QuasiArrays = "c4ea9172-b204-11e9-377d-29865faadc5c"
19-
RecurrenceRelationships = "807425ed-42ea-44d6-a357-6771516d7b2c"
2019
RecurrenceRelationshipArrays = "b889d2dc-af3c-4820-88a8-238fa91d3518"
20+
RecurrenceRelationships = "807425ed-42ea-44d6-a357-6771516d7b2c"
2121
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
2222

2323
[compat]
@@ -28,12 +28,12 @@ ContinuumArrays = "0.18"
2828
FastTransforms = "0.16"
2929
FillArrays = "1"
3030
HypergeometricFunctions = "0.3.4"
31-
InfiniteArrays = "0.14"
31+
InfiniteArrays = "0.14, 0.15"
3232
LazyArrays = "2"
33-
LazyBandedMatrices = "0.10"
33+
LazyBandedMatrices = "0.10, 0.11"
3434
QuasiArrays = "0.11"
35-
RecurrenceRelationships = "0.1"
3635
RecurrenceRelationshipArrays = "0.1"
36+
RecurrenceRelationships = "0.1"
3737
SpecialFunctions = "1, 2"
3838
julia = "1.10"
3939

test/test_logkernel.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ using ClassicalOrthogonalPolynomials: affine
2424

2525
@testset "expand" begin
2626
@test complexlogkernel(exp.(x), 2 + im) sum(log.((2+im) .- x) .* exp.(x))
27-
@test_throws InexactError complexlogkernel(Jacobi(0.1,0.2), 2+im)
27+
@test_throws ArgumentError complexlogkernel(Jacobi(0.1,0.2), 2+im)
2828
end
2929
end
3030

test/test_stieltjes.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ using SingularIntegrals: Stieltjes, StieltjesPoint
7171
U = chebyshevu(0..1)
7272
x = axes(T,1)
7373
H = inv.(x .- x')
74-
@test_broken U\H*Weighted(T) isa BandedMatrix
74+
@test U\H*Weighted(T) isa BandedMatrix
7575
end
7676
end
7777

0 commit comments

Comments
 (0)