Skip to content

Commit 7869741

Browse files
committed
rename testsets
1 parent 581cb80 commit 7869741

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

test/affprop.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ using Statistics
4646
@test R.counts[i] == count(==(i), R.assignments)
4747
end
4848

49-
@testset "Ensure works on nonbasic array type" begin
49+
@testset "Support for arrays other than Matrix{T}" begin
5050
R2 = affinityprop(@view S[:,:]) # run on complete subarray
5151
@test R2.assignments == R.assignments
5252

test/dbscan.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ for c = 1:k
3636
end
3737
@test all(R.counts .>= 180)
3838

39-
@testset "Ensure works on nonbasic array type" begin
39+
@testset "Support for arrays other than Matrix{T}" begin
4040
R2 = dbscan(@view(D[:,:]), 1.0, 10) # run on complete subarray
4141
@test R2.assignments == R.assignments
4242

test/kmedoids.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ R = kmedoids(dist, k)
4040
@test isapprox(sum(R.costs), R.totalcost)
4141
@test R.converged
4242

43-
@testset "Ensure works on nonbasic array type" begin
43+
@testset "Support for arrays other than Matrix{T}" begin
4444
Random.seed!(34568) # restore seed as kmedoids is not determantistic
4545
R2 = kmedoids(@view(dist[:,:]), k) # run on complete subarray
4646
@test R2.assignments == R.assignments

0 commit comments

Comments
 (0)