We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3012222 commit dc84436Copy full SHA for dc84436
spec/support/helpers.rb
@@ -12,10 +12,10 @@ def self.divider(title = '')
12
start_length = 3
13
14
string = ''
15
- string << ('-' * start_length)
16
- string << title
17
- string << ('-' * (total_length - start_length - title.length))
18
- string << "\n"
+ string += ('-' * start_length)
+ string += title
+ string += ('-' * (total_length - start_length - title.length))
+ string += "\n"
19
string
20
end
21
0 commit comments