diff --git a/commerce_prorater_stepped_proportional.info.yml b/commerce_prorater_stepped_proportional.info.yml index 21843d0..f66f1b5 100644 --- a/commerce_prorater_stepped_proportional.info.yml +++ b/commerce_prorater_stepped_proportional.info.yml @@ -1,8 +1,7 @@ name: 'Commerce Stepped Proportional Prorater' type: module description: 'Provides a prorater for Commerce Recurring which gives prices at regular intervals.' -core: 8.x -core_version_requirement: ^8 || ^9 +core_version_requirement: ^8 || ^9 || ^10 package: 'Commerce (contrib)' dependencies: - commerce:commerce diff --git a/tests/src/Kernel/SubscriptionWithRolloverLifecycleTest.php b/tests/src/Kernel/SubscriptionWithRolloverLifecycleTest.php index 4a4180e..182389e 100644 --- a/tests/src/Kernel/SubscriptionWithRolloverLifecycleTest.php +++ b/tests/src/Kernel/SubscriptionWithRolloverLifecycleTest.php @@ -134,6 +134,7 @@ class SubscriptionWithRolloverLifecycleTest extends RecurringKernelTestBase { // Confirm that a recurring order is present. $order_storage = \Drupal::entityTypeManager()->getStorage('commerce_order'); $result = $order_storage->getQuery() + ->accessCheck(FALSE) ->condition('type', 'recurring') ->pager(1) ->execute();