@@ -455,21 +455,21 @@ void testOz2Gram() {
455455 * Test Kilograms to US pounds conversion
456456 */
457457 @ Test
458- void testKg2Lbs () {
458+ void testKg2Lb () {
459459 StackObj stk = new StackObj ();
460460
461461 stk .push (123.321 );
462- StackConversions .cmdKg2Lbs (stk );
462+ StackConversions .cmdKg2Lb (stk );
463463 StackCommands .cmdRound (stk , "5" );
464464 assertEquals (271.87627 , stk .pop ().doubleValue ());
465465
466466 stk .push (-0.369 );
467- StackConversions .cmdKg2Lbs (stk );
467+ StackConversions .cmdKg2Lb (stk );
468468 StackCommands .cmdRound (stk , "5" );
469469 assertEquals (-0.81351 , stk .pop ().doubleValue ());
470470
471471 stk .push (4.321e18 );
472- StackConversions .cmdKg2Lbs (stk );
472+ StackConversions .cmdKg2Lb (stk );
473473 StackCommands .cmdRound (stk , "2" );
474474 assertEquals ("9526174348797800000.00" , stk .pop ().toEngineeringString ());
475475
@@ -479,21 +479,21 @@ void testKg2Lbs() {
479479 * Test US Pounds to Kilograms conversion
480480 */
481481 @ Test
482- void testLbs2Kg () {
482+ void testLb2Kg () {
483483 StackObj stk = new StackObj ();
484484
485485 stk .push (456.654 );
486- StackConversions .cmdLbs2Kg (stk );
486+ StackConversions .cmdLb2Kg (stk );
487487 StackCommands .cmdRound (stk , "5" );
488488 assertEquals (207.13477 , stk .pop ().doubleValue ());
489489
490490 stk .push (-0.987654 );
491- StackConversions .cmdLbs2Kg (stk );
491+ StackConversions .cmdLb2Kg (stk );
492492 StackCommands .cmdRound (stk , "5" );
493493 assertEquals (-0.44799 , stk .pop ().doubleValue ());
494494
495495 stk .push (4.321e18 );
496- StackConversions .cmdLbs2Kg (stk );
496+ StackConversions .cmdLb2Kg (stk );
497497 StackCommands .cmdRound (stk , "2" );
498498 assertEquals ("1959972630770000000.00" , stk .pop ().toEngineeringString ());
499499 }
0 commit comments