diff --git a/.github/workflows/SpellCheck.yml b/.github/workflows/SpellCheck.yml index 4f1868af..d29a5542 100644 --- a/.github/workflows/SpellCheck.yml +++ b/.github/workflows/SpellCheck.yml @@ -10,4 +10,4 @@ jobs: - name: Checkout Actions Repository uses: actions/checkout@v4 - name: Check spelling - uses: crate-ci/typos@v1.20.9 + uses: crate-ci/typos@v1.20.10 diff --git a/Project.toml b/Project.toml index b4cb22a3..287659d2 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "SummationByPartsOperators" uuid = "9f78cca6-572e-554e-b819-917d2f1cf240" author = ["Hendrik Ranocha"] -version = "0.5.60" +version = "0.5.61" [deps] ArgCheck = "dce04be8-c92d-5529-be00-80e4d2c0e197" diff --git a/test/SBP_operators_test.jl b/test/SBP_operators_test.jl index fc72d04c..85c4b550 100644 --- a/test/SBP_operators_test.jl +++ b/test/SBP_operators_test.jl @@ -467,7 +467,7 @@ for source in D_test_list, T in (Float32,Float64) end # Accuracy tests of third derivative operators. -@testset "third-derivative operators" for source in D_test_list, T in (Float32,Float64) +@testset "third-derivative operators ($source, $T)" for source in D_test_list, T in (Float32,Float64) xmin = -one(T) xmax = 2*one(T) N = 101 @@ -499,7 +499,7 @@ end mul!(res, D, x0) @test all(i->abs(res[i]) < eps(T), eachindex(res)) mul!(res, D, x1) - @test all(i->abs(res[i]) < 50_000*eps(T), eachindex(res)) + @test all(i->abs(res[i]) < 80_000*eps(T), eachindex(res)) # only interior mul!(res, D, x2) @test all(i->abs(res[i]) < 160_000*eps(T), inner_indices)