Skip to content

Commit dc84436

Browse files
committed
Fix tests
1 parent 3012222 commit dc84436

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

spec/support/helpers.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ def self.divider(title = '')
1212
start_length = 3
1313

1414
string = ''
15-
string << ('-' * start_length)
16-
string << title
17-
string << ('-' * (total_length - start_length - title.length))
18-
string << "\n"
15+
string += ('-' * start_length)
16+
string += title
17+
string += ('-' * (total_length - start_length - title.length))
18+
string += "\n"
1919
string
2020
end
2121
end

0 commit comments

Comments
 (0)