Skip to content

Commit cff7a36

Browse files
committed
fix typo in test
1 parent 4c27128 commit cff7a36

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/cluster.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ end
5959
# test the warning that clusters must not begin/end with a potentially significant cluster
6060
data = randn(StableRNG(1), 23, 20)
6161
data[1:5, :] .+= 3
62-
@test_warn x -> occursin("Your data shows a cluster", x) Warning ClusterDepth.clusterdepth(data; τ=0.4, nperm=5)
62+
@test_warn x -> occursin("Your data shows a cluster", x) ClusterDepth.clusterdepth(data; τ=0.4, nperm=5)
6363
data = randn(StableRNG(1), 23, 20)
6464
data[23, :] .-= 3
65-
@test_warn x -> occursin("Your data shows a cluster", x) Warning ClusterDepth.clusterdepth(data; τ=0.4, nperm=5)
65+
@test_warn x -> occursin("Your data shows a cluster", x) ClusterDepth.clusterdepth(data; τ=0.4, nperm=5)
6666

6767
end

0 commit comments

Comments
 (0)