Skip to content

Commit cf3bd18

Browse files
committed
fixed verbose test
1 parent 3fefec4 commit cf3bd18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/test05_verbose.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ using Suppressor
1111
X = rand(4, 150)
1212
Random.seed!(2020)
1313
# Capture output and compare
14-
r = @capture_out kmeans(X, 3; n_threads=1, max_iters=1, verbose=true)
15-
@test r == "Iteration 1: Jclust = 0.31023197229652544\n"
14+
r = @capture_out kmeans(Lloyd(), X, 3; n_threads=1, max_iters=1, verbose=true)
15+
@test r == "Iteration 1: Jclust = 46.534795844478815\n"
1616

1717
end
1818

0 commit comments

Comments
 (0)