From ca2e533b2b0d18ec04beafebbd0a38fda72b91a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timoth=C3=A9e=20Poisot?= Date: Tue, 28 Mar 2017 20:52:09 -0400 Subject: [PATCH] :bug: fix a small bug in modularity tests --- test/modularity.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/modularity.jl b/test/modularity.jl index d2583fb3e..6a4fb824c 100644 --- a/test/modularity.jl +++ b/test/modularity.jl @@ -72,5 +72,5 @@ A = [ B = BipartiteNetwork(A) m = louvain(B, collect(1:richness(B))) @test_approx_eq m.Q 0.5 -@test_approx_eq m.Qr 1.0 +@test_approx_eq Qr(m) 1.0 end