From 2e2fcdec47f633a098618de949ffadba97b83872 Mon Sep 17 00:00:00 2001 From: Tanmay Deep Sharma Date: Wed, 15 Jul 2026 12:43:43 +0530 Subject: [PATCH] test(automations): update feature flag bit-mapping spec for delayed_automations --- 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 00b464f73..46eecfc6f 100644 --- a/spec/models/account_spec.rb +++ b/spec/models/account_spec.rb @@ -109,7 +109,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_whatsapp_manual_transfer: 1, feature_data_import: 1 << 1, - feature_api_and_webhooks: 1 << 2) + feature_api_and_webhooks: 1 << 2, feature_delayed_automations: 1 << 3) expect(described_class.flag_mapping['feature_flags_ext_1'][:feature_whatsapp_manual_transfer]).to eq(1) expect(described_class.flag_mapping['feature_flags_ext_1'][:feature_data_import]).to eq(2) end