Skip to content

Commit 89a4f9a

Browse files
Bump crate-ci/typos from 1.20.9 to 1.20.10 (#265)
* Bump crate-ci/typos from 1.20.9 to 1.20.10 Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.20.9 to 1.20.10. - [Release notes](https://github.com/crate-ci/typos/releases) - [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md) - [Commits](crate-ci/typos@v1.20.9...v1.20.10) --- updated-dependencies: - dependency-name: crate-ci/typos dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> * increase test tolerance for new macOS ARM * bump version * include more information in testset name --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Hendrik Ranocha <[email protected]>
1 parent 89f0e9a commit 89a4f9a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/SpellCheck.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ jobs:
1010
- name: Checkout Actions Repository
1111
uses: actions/checkout@v4
1212
- name: Check spelling
13-
uses: crate-ci/[email protected].9
13+
uses: crate-ci/[email protected].10

Project.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "SummationByPartsOperators"
22
uuid = "9f78cca6-572e-554e-b819-917d2f1cf240"
33
author = ["Hendrik Ranocha"]
4-
version = "0.5.60"
4+
version = "0.5.61"
55

66
[deps]
77
ArgCheck = "dce04be8-c92d-5529-be00-80e4d2c0e197"

test/SBP_operators_test.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ for source in D_test_list, T in (Float32,Float64)
467467
end
468468

469469
# Accuracy tests of third derivative operators.
470-
@testset "third-derivative operators" for source in D_test_list, T in (Float32,Float64)
470+
@testset "third-derivative operators ($source, $T)" for source in D_test_list, T in (Float32,Float64)
471471
xmin = -one(T)
472472
xmax = 2*one(T)
473473
N = 101
@@ -499,7 +499,7 @@ end
499499
mul!(res, D, x0)
500500
@test all(i->abs(res[i]) < eps(T), eachindex(res))
501501
mul!(res, D, x1)
502-
@test all(i->abs(res[i]) < 50_000*eps(T), eachindex(res))
502+
@test all(i->abs(res[i]) < 80_000*eps(T), eachindex(res))
503503
# only interior
504504
mul!(res, D, x2)
505505
@test all(i->abs(res[i]) < 160_000*eps(T), inner_indices)

0 commit comments

Comments
 (0)