From 6b18e1c3a404670aeed1692e417db5b6a6c89156 Mon Sep 17 00:00:00 2001 From: Noah Martin Date: Fri, 24 Jul 2026 17:53:12 -0700 Subject: [PATCH] ref: Removed feature flag in test that was unused --- static/gsApp/views/amCheckout/index.spec.tsx | 2 +- static/gsApp/views/amCheckout/steps/setSpendLimit.spec.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/static/gsApp/views/amCheckout/index.spec.tsx b/static/gsApp/views/amCheckout/index.spec.tsx index 97c50c05587b..429cea0d114a 100644 --- a/static/gsApp/views/amCheckout/index.spec.tsx +++ b/static/gsApp/views/amCheckout/index.spec.tsx @@ -159,7 +159,7 @@ describe('Default Tier Checkout', () => { let mockBillingConfigResponse: any; beforeEach(() => { - organization.features = ['ondemand-budgets', 'am3-billing']; + organization.features = ['ondemand-budgets']; MockApiClient.clearMockResponses(); mockBillingConfigResponse = MockApiClient.addMockResponse({ url: `/customers/${organization.slug}/billing-config/`, diff --git a/static/gsApp/views/amCheckout/steps/setSpendLimit.spec.tsx b/static/gsApp/views/amCheckout/steps/setSpendLimit.spec.tsx index 10b228593b94..501b62a99c39 100644 --- a/static/gsApp/views/amCheckout/steps/setSpendLimit.spec.tsx +++ b/static/gsApp/views/amCheckout/steps/setSpendLimit.spec.tsx @@ -14,7 +14,7 @@ import AMCheckout from 'getsentry/views/amCheckout'; describe('SetSpendLimit', () => { let api: Client; const organization = OrganizationFixture({ - features: ['ondemand-budgets', 'am3-billing'], + features: ['ondemand-budgets'], }); const preAm3Organization = OrganizationFixture({ features: ['ondemand-budgets'],