HHH-11709 : Fix typo

This commit is contained in:
Gail Badner 2017-04-28 19:40:14 -07:00
parent b22f38b00f
commit 78d0c22c0b
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ public class OptimizerUnitTest extends BaseUnitTestCase {
// test historic sequence behavior, where the initial values start at 1...
SourceMock sequence = new SourceMock( 1 );
Optimizer optimizer = buildHiloOptimizer( -1, incremepnt );
Optimizer optimizer = buildHiloOptimizer( -1, increment );
for ( int i = 1; i <= increment; i++ ) {
next = ( Long ) optimizer.generate( sequence );
assertEquals( i, next.intValue() );