Fixed a missed instance of fromRange -> FromRange

release/4.3a0
Richard Roberts 2010-10-14 01:45:12 +00:00
parent 89a61305eb
commit 6aa47963e9
1 changed files with 2 additions and 2 deletions

View File

@ -66,11 +66,11 @@ TEST( Conditional, fourParents )
}
/* ************************************************************************* */
TEST( Conditional, fromRange )
TEST( Conditional, FromRange )
{
list<Index> 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())
}