From 6aa47963e95155ca9832e83d45aabb0636bbb5f6 Mon Sep 17 00:00:00 2001 From: Richard Roberts Date: Thu, 14 Oct 2010 01:45:12 +0000 Subject: [PATCH] Fixed a missed instance of fromRange -> FromRange --- inference/tests/testConditional.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inference/tests/testConditional.cpp b/inference/tests/testConditional.cpp index c383c3e6b..e2b6575bc 100644 --- a/inference/tests/testConditional.cpp +++ b/inference/tests/testConditional.cpp @@ -66,11 +66,11 @@ TEST( Conditional, fourParents ) } /* ************************************************************************* */ -TEST( Conditional, fromRange ) +TEST( Conditional, FromRange ) { list keys; keys += 1,2,3,4,5; - Conditional::shared_ptr c0 = Conditional::fromRange(keys.begin(),keys.end(),2); + Conditional::shared_ptr c0 = Conditional::FromRange(keys.begin(),keys.end(),2); LONGS_EQUAL(2,c0->nrFrontals()) LONGS_EQUAL(3,c0->nrParents()) }