Skip to content

Commit 4e88b55

Browse files
committed
test: fix test
1 parent d9be0bd commit 4e88b55

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

target_chains/ethereum/contracts/forge-test/PulseScheduler.t.sol

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -380,12 +380,10 @@ contract SchedulerTest is Test, SchedulerEvents, PulseSchedulerTestUtils {
380380
"priceLastUpdatedAt should be set to the first update timestamp"
381381
);
382382

383-
// 2. Update subscription to change price IDs
383+
// 2. Update subscription to add price IDs
384384
(SchedulerState.SubscriptionParams memory currentParams, ) = scheduler
385385
.getSubscription(subscriptionId);
386-
387-
// Create new price IDs (different from the original ones)
388-
bytes32[] memory newPriceIds = createPriceIds(3); // Different number of price IDs
386+
bytes32[] memory newPriceIds = createPriceIds(3);
389387

390388
SchedulerState.SubscriptionParams memory newParams = currentParams;
391389
newParams.priceIds = newPriceIds;

0 commit comments

Comments
 (0)