summaryrefslogtreecommitdiff
path: root/spec/models/integrations/chat_message/issue_message_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/models/integrations/chat_message/issue_message_spec.rb')
-rw-r--r--spec/models/integrations/chat_message/issue_message_spec.rb17
1 files changed, 9 insertions, 8 deletions
diff --git a/spec/models/integrations/chat_message/issue_message_spec.rb b/spec/models/integrations/chat_message/issue_message_spec.rb
index 4a86322cdaf..ff9f30efdca 100644
--- a/spec/models/integrations/chat_message/issue_message_spec.rb
+++ b/spec/models/integrations/chat_message/issue_message_spec.rb
@@ -47,14 +47,15 @@ RSpec.describe Integrations::ChatMessage::IssueMessage do
it 'returns a message regarding opening of issues' do
expect(subject.pretext).to eq(
'[<http://somewhere.com|project_name>] Issue <http://url.com|#100 Issue title> opened by Test User (test.user)')
- expect(subject.attachments).to eq([
- {
- title: "#100 Issue title",
- title_link: "http://url.com",
- text: "issue description",
- color: color
- }
- ])
+ expect(subject.attachments).to eq(
+ [
+ {
+ title: "#100 Issue title",
+ title_link: "http://url.com",
+ text: "issue description",
+ color: color
+ }
+ ])
end
end