fix: send label list not object in event data presenter (#5853)

This commit is contained in:
Tejaswini Chile
2022-11-15 12:20:06 +05:30
committed by GitHub
parent b5f7be0cd2
commit 38ab3c36db
2 changed files with 1 additions and 5 deletions

View File

@@ -149,7 +149,7 @@ describe ActionCableListener do
end
it 'broadcast event with label data' do
expect(conversation.reload.push_event_data[:labels]).to eq(conversation.labels.pluck(:id, :name))
expect(conversation.reload.push_event_data[:labels]).to eq(conversation.labels.pluck(:name))
expect(ActionCableBroadcastJob).to receive(:perform_later).with(
[agent.pubsub_token, admin.pubsub_token, conversation.contact_inbox.pubsub_token],