From 2a8c547aeb0120eba1cf1506f699f336f619aed6 Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Tue, 11 Apr 2023 11:06:24 +0530 Subject: [PATCH] Revert "chore: Specs for Whatsapp template pagination (#6870)" This reverts commit d49989ace1b7031ca29319002af15c4bebe8e5d3. --- .../providers/whatsapp_cloud_service_spec.rb | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/spec/services/whatsapp/providers/whatsapp_cloud_service_spec.rb b/spec/services/whatsapp/providers/whatsapp_cloud_service_spec.rb index 69527487e..ce0c7ae34 100644 --- a/spec/services/whatsapp/providers/whatsapp_cloud_service_spec.rb +++ b/spec/services/whatsapp/providers/whatsapp_cloud_service_spec.rb @@ -112,20 +112,9 @@ describe Whatsapp::Providers::WhatsappCloudService do context 'when called' do it 'updated the message templates' do stub_request(:get, 'https://graph.facebook.com/v14.0/123456789/message_templates?access_token=test_key') - .to_return( - { status: 200, headers: response_headers, - body: { data: [ - { id: '123456789', name: 'test_template' } - ], paging: { next: 'https://graph.facebook.com/v14.0/123456789/message_templates?access_token=test_key' } }.to_json }, - { status: 200, headers: response_headers, - body: { data: [ - { id: '123456789', name: 'next_template' } - ], paging: { prev: 'https://graph.facebook.com/v14.0/123456789/message_templates?access_token=test_key' } }.to_json } - ) - + .to_return(status: 200, headers: response_headers, body: { data: [{ id: '123456789', name: 'test_template' }] }.to_json) expect(subject.sync_templates).to be(true) - expect(whatsapp_channel.reload.message_templates.first).to eq({ id: '123456789', name: 'test_template' }.stringify_keys) - expect(whatsapp_channel.reload.message_templates.last).to eq([{ id: '123456789', name: 'next_template' }.stringify_keys]) + expect(whatsapp_channel.reload.message_templates).to eq([{ id: '123456789', name: 'test_template' }.stringify_keys]) end end end