Skip to content
This repository was archived by the owner on Nov 6, 2023. It is now read-only.

Commit ade3c2b

Browse files
authored
Merge pull request #31 from JuliaEarth/auto-juliaformatter-pr
[AUTO] JuliaFormatter.jl run
2 parents dc3e4d6 + 73e69db commit ade3c2b

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

test/runtests.jl

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,7 @@ using GeoStatsBase
44
using Test, Random
55

66
# list of tests
7-
testfiles = [
8-
"processes.jl",
9-
"thinning.jl"
10-
]
7+
testfiles = ["processes.jl", "thinning.jl"]
118

129
@testset "PointPatterns.jl" begin
1310
for testfile in testfiles

test/thinning.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
@test all(0 .≤ last.(xs) .≤ 4.0)
1111

1212
λ(s::Point2) = sum(coordinates(s) .^ 2)
13-
tp = thin(pp, RandomThinning(s -> λ(s) / λ(Point(4.0,4.0))))
13+
tp = thin(pp, RandomThinning(s -> λ(s) / λ(Point(4.0, 4.0))))
1414
@test length(tp) length(pp)
1515
xs = coordinates.(tp)
1616
@test all(0 .≤ first.(xs) .≤ 4.0)

0 commit comments

Comments
 (0)