diff options
author | Ciro Santilli <ciro.santilli@gmail.com> | 2014-11-01 22:26:12 +0100 |
---|---|---|
committer | Ciro Santilli <ciro.santilli@gmail.com> | 2014-11-01 22:26:12 +0100 |
commit | 54ded5d95b16ea09be50dc7a9347fb6d5c02b1d9 (patch) | |
tree | af0f38a69bbf92121a170128bb234597e2cd09af /spec | |
parent | 7371c9e2f453c6bd910aa1335a278743bbf827bf (diff) | |
download | gitlab-ce-54ded5d95b16ea09be50dc7a9347fb6d5c02b1d9.tar.gz |
Continue strings with backslash instead of append
Diffstat (limited to 'spec')
-rw-r--r-- | spec/models/slack_message_spec.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/models/slack_message_spec.rb b/spec/models/slack_message_spec.rb index 1cd58534702..a07273e99af 100644 --- a/spec/models/slack_message_spec.rb +++ b/spec/models/slack_message_spec.rb @@ -26,11 +26,11 @@ describe SlackMessage do it 'returns a message regarding pushes' do subject.pretext.should == - 'user_name pushed to branch <url/commits/master|master> of ' << + 'user_name pushed to branch <url/commits/master|master> of '\ '<url|project_name> (<url/compare/before...after|Compare changes>)' subject.attachments.should == [ { - text: "<url1|abcdefghi>: message1 - author1\n" << + text: "<url1|abcdefghi>: message1 - author1\n"\ "<url2|123456789>: message2 - author2", color: color, } @@ -45,7 +45,7 @@ describe SlackMessage do it 'returns a message regarding a new branch' do subject.pretext.should == - 'user_name pushed new branch <url/commits/master|master> to ' << + 'user_name pushed new branch <url/commits/master|master> to '\ '<url|project_name>' subject.attachments.should be_empty end |