From 2adf19caf9d5f003111278d271fc1a28b9b01bee Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Mon, 13 Jul 2026 14:05:10 +0530 Subject: [PATCH] fix: correct feature_flags_ext_1 bit expectation in account spec --- spec/models/account_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/models/account_spec.rb b/spec/models/account_spec.rb index dacd147f9..6fc625960 100644 --- a/spec/models/account_spec.rb +++ b/spec/models/account_spec.rb @@ -108,7 +108,7 @@ RSpec.describe Account do it 'configures the account feature flag extension column' do expect(described_class.flag_columns).to include('feature_flags', 'feature_flags_ext_1') - expect(described_class.flag_mapping['feature_flags_ext_1']).to eq(feature_api_and_webhooks: 1) + expect(described_class.flag_mapping['feature_flags_ext_1']).to eq(feature_whatsapp_manual_transfer: 1, feature_api_and_webhooks: 1 << 1) end it 'keeps existing feature flags on the original column' do