@@ -794,11 +794,11 @@ contract FilecoinWarmStorageServiceTest is Test {
794794 FilecoinWarmStorageService.ServicePricing memory pricing = pdpServiceWithPayments.getServicePrice ();
795795
796796 uint256 decimals = 6 ; // MockUSDFC uses 6 decimals in tests
797- uint256 expectedNoCDN = 25 * 10 ** ( decimals - 1 ) ; // 2. 5 USDFC with 6 decimals
798- uint256 expectedWithCDN = 3 * 10 ** decimals; // 3 USDFC with 6 decimals (2.5 + 0.5 CDN)
797+ uint256 expectedNoCDN = 5 * 10 ** decimals; // 5 USDFC with 6 decimals
798+ uint256 expectedWithCDN = 55 * 10 ** ( decimals - 1 ) ; // 5.5 USDFC with 6 decimals
799799
800- assertEq (pricing.pricePerTiBPerMonthNoCDN, expectedNoCDN, "No CDN price should be 2. 5 * 10^decimals " );
801- assertEq (pricing.pricePerTiBPerMonthWithCDN, expectedWithCDN, "With CDN price should be 3 * 10^decimals " );
800+ assertEq (pricing.pricePerTiBPerMonthNoCDN, expectedNoCDN, "No CDN price should be 5 * 10^decimals " );
801+ assertEq (pricing.pricePerTiBPerMonthWithCDN, expectedWithCDN, "With CDN price should be 5.5 * 10^decimals " );
802802 assertEq (address (pricing.tokenAddress), address (mockUSDFC), "Token address should match USDFC " );
803803 assertEq (pricing.epochsPerMonth, 86400 , "Epochs per month should be 86400 " );
804804
@@ -812,16 +812,16 @@ contract FilecoinWarmStorageServiceTest is Test {
812812 (uint256 serviceFee , uint256 spPayment ) = pdpServiceWithPayments.getEffectiveRates ();
813813
814814 uint256 decimals = 6 ; // MockUSDFC uses 6 decimals in tests
815- // Total is 2. 5 USDFC with 6 decimals
816- uint256 expectedTotal = 25 * 10 ** ( decimals - 1 ) ;
815+ // Total is 5 USDFC with 6 decimals
816+ uint256 expectedTotal = 5 * 10 ** decimals;
817817
818818 // Test setup uses 0% commission
819819 uint256 expectedServiceFee = 0 ; // 0% commission
820820 uint256 expectedSpPayment = expectedTotal; // 100% goes to SP
821821
822822 assertEq (serviceFee, expectedServiceFee, "Service fee should be 0 with 0% commission " );
823- assertEq (spPayment, expectedSpPayment, "SP payment should be 2. 5 * 10^6 " );
824- assertEq (serviceFee + spPayment, expectedTotal, "Total should equal 2. 5 * 10^6 " );
823+ assertEq (spPayment, expectedSpPayment, "SP payment should be 5 * 10^6 " );
824+ assertEq (serviceFee + spPayment, expectedTotal, "Total should equal 5 * 10^6 " );
825825
826826 // Verify the values are in expected range
827827 assert (serviceFee + spPayment < 10 ** 8 ); // Less than 10^8
0 commit comments